.elementor-15540 .elementor-element.elementor-element-8ff79a0{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #667eea;
    --purple-dark: #764ba2;
    --cyan: #4ECDC4;
    --dark: #2D3748;
    --gray: #4A5568;
}

body {
    font-family: Inter, system-ui, sans-serif;
}

.pre-footer-cta {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.pre-footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.pre-footer-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.btn-cta-primary {
    background: white;
    color: var(--purple);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
}

footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: rgba(255,255,255,0.8);
    margin: 1rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
}

.footer-column h3 {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    border: none;
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg, var(--purple), var(--cyan));
    color: white;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        text-align: center;
        flex-direction: column;
    }

    .newsletter-form {
        flex-direction: column;
    }
}/* End custom CSS */