:root {
    --primary-color: #002147;
    /* Vibrant Navy Blue */
    --secondary-color: #00E0FF;
    /* Cyan/Teal from Logo Lines */
    --accent-color: #0056b3;
    /* More vibrant blue accent */
    --text-color: #333333;
    --light-bg: #F0F8FA;
    /* Very light cyan tint */
    --white: #FFFFFF;
    --dark-overlay: rgba(0, 33, 71, 0.85);
    /* Matching Primary Color with higher opacity */
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 33, 71, 0.08);
    --hover-shadow: 0 20px 40px rgba(0, 224, 255, 0.25);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    /* Prevent font size strings in orientation change on iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Prevent horizontal scroll on some mobile browsers */
}

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Momentum scrolling for iOS */
}

a,
button,
.btn-cta,
.whatsapp-btn,
.consorcio-item {
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    /* Better image quality on some browsers */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-top: -40px;
    margin-bottom: 50px;
}

.bg-light {
    background-color: var(--light-bg);
}

/* Header */
.main-header {
    background-color: #F0F4F8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 180px;
    /* Adjusted header height for mega logo */
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 160px;
    /* Logo set to 160px */
    transition: var(--transition);
    display: block;
    background: transparent;
    max-width: 100%;
    object-fit: contain;
}

/* Scaled version for internal pages and overlays */
.logo-img-small {
    height: 120px !important;
    margin-bottom: 20px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Reduced from 30px to bring items closer */
}

.nav-list li a {
    font-weight: 500;
    color: var(--primary-color);
}

.nav-list li a:hover {
    color: var(--secondary-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    white-space: nowrap;
}

.btn-nav:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 224, 255, 0.4);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero {
    margin-top: 180px;
    /* Use background-image specifically for the layer to be more robust */
    background-image: linear-gradient(135deg, var(--dark-overlay), rgba(0, 0, 0, 0.6)), url('office_bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: calc(100vh - 190px);
    display: flex;
    align-items: center;
    padding: 15px 0;
    color: var(--white);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

/* Carousel Styles */
.hero-carousel {
    position: relative;
    min-height: 280px;
}

.carousel-slide {
    display: none;
    animation: fadeEffect 1s;
}

.carousel-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0.4;
    }

    to {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 5px;
    /* Reduced margin to pair with slogan */
    font-weight: 700;
}

.hero-slogan {
    font-size: 1.8rem;
    font-weight: 400;
    /* Lighter weight for contrast */
    margin-bottom: 20px;
    opacity: 0.9;
    color: var(--secondary-color);
    /* Highlight color */
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.btn-carousel-cta {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-carousel-cta:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Carousel Indicators */
.carousel-indicators {
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
}

.indicator {
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background-color: var(--secondary-color);
    width: 30px;
    border-radius: 5px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
    /* Ultra compact gaps */
    max-width: 600px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--secondary-color);
}

/* Hero Form */
.hero-form-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.hero-form-card h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.hero-form-card p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    color: #666;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 3px;
    font-size: 0.85rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
    -webkit-appearance: none;
    /* Remove Safari default styling */
    -moz-appearance: none;
    appearance: none;
}

/* Add custom arrow for select because appearance: none removes it */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
}

.btn-cta {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-cta:hover {
    background-color: #00B4D8;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 224, 255, 0.6);
    transform: translateY(-5px);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    /* Lighter border/shadow approach */
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content */
    text-align: center;
    /* Center text */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 224, 255, 0.3);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: #f0f4f8;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.link-more {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-more:hover {
    gap: 12px;
}

.category-title {
    display: none;
    /* Hiding old category titles since we unified */
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    /* Moved up from 25px */
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-green 2s infinite;
    /* Continuous pulse */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

/* Consorcio */
.consorcio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.consorcio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
}

.consorcio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.consorcio-item:hover img {
    transform: scale(1.1);
}

.consorcio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

/* Consorcio Content */
.consorcio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Comparison Table */
.table-container {
    overflow-x: auto;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-radius: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
}

.comparison-table th.highlight-col {
    background-color: #00C853;
    /* Stronger Green for header */
}

.comparison-table td.highlight-col {
    background-color: #E8F5E9;
    /* Light Green background */
    font-weight: 500;
    color: #2E7D32;
    border-bottom: 1px solid #C8E6C9;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: #f9f9f9;
}

.comparison-table tr:hover td.highlight-col {
    background-color: #DCEDC8;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 70px;
    padding-bottom: 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.8;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
        margin: 0 auto;
        /* Center the grid */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .main-header {
        height: 120px;
    }

    .logo-img {
        height: 80px;
    }

    .hero {
        margin-top: 80px;
        padding: 130px 0 20px;
        /* Increased top padding to clear header */
        height: auto;
        min-height: calc(100vh - 80px);
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 120px;
        /* Match new mobile header height */
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
    }

    .nav-list li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }

    .btn-nav {
        margin: 20px auto;
        display: inline-block;
        width: 80%;
    }

    .mobile-menu-icon {
        display: block;
        font-size: 1.8rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Reduced for mobile */
    }

    .hero-slogan {
        font-size: 1.3rem;
        /* Reduced for mobile */
        margin-bottom: 15px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        /* Stack features on very small screens? Or keep 2x2? Let's keep 2x2 but smaller font */
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
        width: 100%;
    }

    .feature-item {
        font-size: 0.95rem;
        justify-content: flex-start;
        /* Align text left even if container is centered? */
        text-align: left;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-title {
        font-size: 1.8rem;
        width: 100%;
    }

    .value-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .value-number {
        position: static;
        font-size: 2rem;
        margin-bottom: 5px;
        color: rgba(11, 17, 32, 0.1);
        /* Subtle styled number inline */
    }

    .value-item {
        padding: 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Highlight Section Mobile */
    .highlight-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-text .section-title {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .feature-item {
        font-size: 0.9rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        /* 1 column on very small phones if needed, strict alignment */
    }
}

/* Highlight Section Styles */
.highlight-section {
    background-color: var(--light-bg);
    /* Use light background to differentiate */
}

.highlight-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.highlight-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--hover-shadow);
}

.highlight-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Nossa Essência (MVV) Styling */
.mvv-section {
    background-color: var(--light-bg);
    position: relative;
    padding-bottom: 100px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--secondary-color);
}

.mv-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    background: rgba(0, 224, 255, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.mv-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.values-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-left: 5px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f0f4f8;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 0;
}

.value-item h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    z-index: 1;
    position: relative;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    z-index: 1;
    position: relative;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.5s ease;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-container p {
    font-size: 0.9rem;
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

.cookie-container a {
    color: #002147;
    text-decoration: underline;
    font-weight: 600;
}

.btn-cookie {
    padding: 8px 25px !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.5s ease;
    max-width: 320px;
    margin: 0 auto;
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.form-success h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.form-success p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section Restoration */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info .section-title {
    margin-bottom: 20px;
    font-size: 2.22rem;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-area {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.actual-form .form-group {
    margin-bottom: 15px;
}

.actual-form input,
.actual-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #f9f9f9;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Specific styling to ensure footer success is a card */
#contactSuccessMessage {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
