* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #D1284C !important;
    background-color: #FFF5EC !important;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #FFEAD7;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #D1284C;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #D1284C;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links3 {
    display: flex;
    gap: 16px;
    margin: auto;
    width: 200px;
}

.social-links3 a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(62, 14, 31);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: #F7EAE3;
}

.social-links2 {
    display: flex;
    gap: 16px;
}

.social-links2 {
    display: flex;
    gap: 16px;
}

.social-links2 a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(248, 128, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    color: #F88020;
}


.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFF5EC;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    color: #D1284C;
}

.social-links a:hover {
    background: #F88020;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 600px;
    display: flex;
    align-items: center;

    background: #FFEAD7;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #3E0E1F;
    letter-spacing: -0.02em;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: #D1284C;
    margin-bottom: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-text .description {
    font-size: 1.125rem;
    margin-bottom: 40px;
    color: rgba(62, 14, 31, 0.8);
    line-height: 1.7;
}

.cta-button {
    background: #D1284C;
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;

}

.cta-button:hover {
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    margin: auto;
}

.hero-image img {
    max-width: 300px;
    height: auto;
    margin: auto;
}


/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.state-image img {
    width: 200px;
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    width: 300px;
    min-height: 200px;
    padding: 32px;
    border-radius: 16px;
    background: #FFEAD7;
}

.stats-flex-item {
    min-width: 250px;
    flex: 1;
    transition: transform 0.3s ease;
}


.stats-flex-item:first-child {
    display: flex;
    justify-content: center;
}

.stats-flex-item:not(:first-child) {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.stats-flex-item:hover {
    transform: translateY(-8px);
}

.stat-number i {
    color: #3E0E1F;
}


.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #D1284C;
    margin-bottom: 16px;
}

.stat-label {
    font-size: 1.1rem;
    color: #3E0E1F;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #FFEAD7;
}

.about-flex {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image img {
    width: 200px;
}

.about-content {
    max-width: 600px;
    text-align: left;
}

.about h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    color: #3E0E1F;
    letter-spacing: -0.02em;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(62, 14, 31, 0.8);
}

/* Services Section */
.services {
    padding: 120px 0;
    display: flex;
    justify-content: space-between;
}

.services h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 80px;
    color: #3E0E1F;
    letter-spacing: -0.02em;
}

.services-line {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 0 24px;
    height: 100%;
}



.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #3E0E1F;
    letter-spacing: -0.01em;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(62, 14, 31, 0.8);
    flex-grow: 1;
}


.service-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}



.service-image {
    margin: auto !important;
    text-align: center;
    padding-bottom: 30px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 200px;
    max-height: 250px;
    object-fit: contain;
}


/* Community Section */
.community {
    padding: 120px 0;
    background: #6D1937;
    color: #FFF5EC;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-content {
    position: relative;
    z-index: 1;
}

.community h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.community p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 48px 0;
}


/* Footer */
footer {
    background: #3E0E1F;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #F88020;
}

.footer-section p {
    color: rgba(255, 234, 215, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-section a {
    color: #FFEAD7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #F88020;
}

.contact-info {
    padding: 10px;
    border-radius: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 234, 215, 0.2);
    padding-top: 32px;
    text-align: center;
    color: rgba(255, 234, 215, 0.6);
}



/* Responsive Design */
@media (max-width: 1050px) {

    .stats-flex {
        justify-content: center;
        gap: 30px;
    }

    .stats-flex-item:first-child {
        flex-basis: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .stats-flex-item:not(:first-child) {
        flex: 1;
        min-width: 250px;
        max-width: 400px;
    }

    .service-card {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .stats-flex {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stats-flex-item {
        flex-basis: 100%;
        max-width: none;
    }

    .stats-flex-item:first-child {
        margin-bottom: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .service-card {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-card:nth-child(even) {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }

    .header-content {
        padding: 12px 0;
    }

    .social-links {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
