/* How It Works Section */
.how-it-works-section {
    padding: 120px 0 60px;
    background-color: #ffffff;
}

.how-it-works-section h1 {
    text-align: center;
    margin-bottom: 0.5em;
}

.how-it-works-section .container > p {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 3em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.flow-diagram {
    text-align: center;
    margin-bottom: 3em;
}

.flow-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.flow-explanation {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f4f7f6;
    padding: 2em;
    border-radius: 8px;
}

.flow-explanation h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 1em;
    color: #4A148C;
}

.flow-explanation ul {
    list-style: none;
    padding-left: 0;
}

.flow-explanation li {
    margin-bottom: 1em;
    padding-left: 1.5em;
    position: relative;
}

.flow-explanation li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00BCD4;
    font-weight: bold;
}

.flow-explanation strong {
    color: #4A148C;
}

.footer-fixed {
    position: static;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6; /* Light gray background */
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #00BCD4; /* Vibrant Teal - Accent Color */
}

h1, h2, h3, h4 {
    color: #4A148C; /* Deep Purple - Primary Color */
}

h1 {
    font-size: 2.8em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 1em;
    padding-top: 40px;
}

/* Header & Navigation */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1em 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #4A148C; /* Deep Purple */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px; /* Reduced margin for nav items */
}

nav ul li a {
    color: #555;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #00BCD4; /* Vibrant Teal */
}

.language-switcher {
    margin-left: 20px;
}

.language-switcher select {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9em;
    cursor: pointer;
}

.language-switcher select:focus {
    outline: none;
    border-color: #4A148C; /* Deep Purple */
    box-shadow: 0 0 0 2px rgba(74, 20, 140, 0.2);
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 100%); /* Gradient Purple */
    color: #ffffff;
    padding: 180px 0 100px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 3.2em;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.2em;
    margin-bottom: 2em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #00BCD4; /* Vibrant Teal */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.cta-button svg {
    margin-right: 10px;
    color: #ffffff;
}

.cta-button:hover {
    background-color: #0097A7; /* Darker Teal */
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-cards {
    display: flex; /* Changed to flexbox */
    gap: 20px; /* Reduced gap between cards */
    margin-top: 20px;
    overflow-x: auto; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap to cards */
    scroll-behavior: smooth; /* Smooth scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: 15px; /* Add some padding for scrollbar */
}

.service-cards::-webkit-scrollbar {
    height: 8px;
}

.service-cards::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 10px;
}

.service-cards::-webkit-scrollbar-track {
    background-color: rgba(0,0,0,0.1);
}

.service-card {
    scroll-snap-align: start; /* Snap cards to the start */
    flex-shrink: 0; /* Prevent cards from shrinking */
    width: 280px; /* Fixed width for scrolling */
    max-width: 100%; /* Ensure it doesn't exceed container width */
}

.service-card {
    background-color: #fff;
    padding: 25px; /* Slightly reduced padding */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto; /* Do not grow or shrink, base on content */
    width: 280px; /* Fixed width for scrolling */
    scroll-snap-align: start; /* Snap cards to the start */
}



.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(74, 20, 140, 0.15); /* Purple shadow on hover */
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    fill: #00BCD4; /* Teal */
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #4A148C; /* Deep Purple */
}

.service-card p {
    font-size: 0.95em;
    color: #555;
}

/* Why Us Section */
.why-us-section {
    padding: 60px 0;
    background-color: #f0e6f6; /* Light Purple Background */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feature-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
}

.feature-item h4 {
    font-size: 1.3em;
    color: #4A148C; /* Deep Purple */
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9em;
    color: #555;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for contrast */
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

.pricing-subtitle strong {
    color: #4A148C; /* Deep Purple */
}

.pricing-cards {
    display: flex;
    justify-content: center; /* Center cards */
    flex-wrap: nowrap; /* Prevent wrapping on larger screens */
    gap: 10px; /* Further reduced gap */
    margin-top: 20px;
    padding: 0 10px; /* Add some padding to the container if cards are too close to edge */
}

.pricing-card {
    background-color: #fff;
    padding: 15px; /* Further reduced padding */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
    flex: 1 1 0; /* Allow cards to shrink and grow from a zero basis, distributing space */
    min-width: 200px; /* Minimum width before wrapping - further adjusted */
    max-width: 23%; /* Try percentage based max-width to fit 4 cards */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(74, 20, 140, 0.15); /* Purple shadow on hover */
}

.pricing-card.popular {
    border-top: 5px solid #00BCD4; /* Teal border for popular plan */
    position: relative;
    overflow: hidden; /* To contain the badge */
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #00BCD4; /* Teal */
    color: white;
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: 600;
    transform: rotate(45deg) translate(25%, -100%);
    transform-origin: top right;
    width: 120px; /* Adjust as needed */
    text-align: center;
}


.pricing-card h3 {
    font-size: 1.6em;
    color: #4A148C; /* Deep Purple */
    margin-bottom: 15px;
}

.pricing-card .price {
    font-size: 2.5em;
    font-weight: 700;
    color: #4A148C; /* Deep Purple */
    margin-bottom: 20px;
}

.pricing-card .price .price-period {
    font-size: 0.5em;
    font-weight: 400;
    color: #555;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
    flex-grow: 1; /* Allows button to be at the bottom */
}

.pricing-card ul li {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-card ul li::before {
    content: '✔';
    color: #00BCD4; /* Teal checkmark */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card .cta-button {
    width: calc(100% - 40px); /* Adjust width to fit padding of card */
    margin: 20px auto 0; /* Center button and add top margin */
    padding: 12px 20px; /* Adjusted padding for button */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.pricing-card.enterprise .price {
    font-size: 2em; /* Smaller font size for 'Personalizado' */
}

.pricing-card.enterprise .cta-button {
    /* font-size and padding are now inherited from .cta-button */
    /* This makes it match the style of "Assinar Agora" */
    width: auto; 
    display: inline-block; 
}

.pricing-card.enterprise .cta-button:hover {
    background-color: #333;
}


/* Form Section Styles */
.form-section {
    padding: 120px 0 60px;
    background-color: #f4f7f6;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.form-section .container {
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 40px;
    margin: 0 auto;
}

.form-section h1 {
    text-align: center;
    color: #4A148C;
    margin-bottom: 30px;
}

.styled-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.styled-form label {
    font-weight: 600;
    color: #4A148C;
    font-size: 0.95em;
}

.styled-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.styled-form input:focus {
    outline: none;
    border-color: #4A148C;
    box-shadow: 0 0 0 2px rgba(74, 20, 140, 0.2);
}

.styled-form .cta-button {
    margin-top: 10px;
    align-self: center;
    width: 100%;
}

.form-links {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9em;
}

.form-links a {
    color: #00BCD4;
    transition: color 0.3s;
}

.form-links a:hover {
    color: #4A148C;
    text-decoration: underline;
}

/* Success Message Styles */
.success-message {
    background-color: #f0f9f4;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border-left: 5px solid #4CAF50;
    margin-bottom: 30px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.success-message h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.success-message p {
    color: #555;
    margin-bottom: 25px;
}

.success-message .cta-button {
    background-color: #4CAF50;
    display: inline-block;
    margin: 0 auto;
}

.success-message .cta-button:hover {
    background-color: #3d8b40;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #00BCD4 0%, #00838F 100%); /* Gradient Teal */
    color: #ffffff;
}

.contact-section h2 {
    color: #ffffff;
}

.contact-section p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

#contact-form {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
     gap: 20px;
      align-items: center;
     background-color: #ffffff;
     padding: 40px;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.1);
     text-align: center;
}

 #contact-form form {
     display: flex;
     flex-direction: column;
     gap: 15px;
     width: 100%;
 }

#contact-form input,
#contact-form textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #4A148C; /* Deep Purple */
    box-shadow: 0 0 0 2px rgba(74, 20, 140, 0.3);
}

#contact-form .cta-button {
    background-color: #4A148C; /* Deep Purple */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    align-self: center;
    text-align: center;
    display: flex; /* Usar flexbox para alinhar o ícone e o texto */
    justify-content: center;
    align-items: center;
}

#contact-form .cta-button svg {
    margin-right: 10px; /* Espaçamento entre o ícone e o texto */
    color: #ffffff; /* Cor do ícone */
}

#contact-form .cta-button:hover {
    background-color: #310f5e; /* Darker Purple */
    transform: translateY(-3px);
}

/* Test Drive Section */
.test-drive-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.test-drive-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.phone-icon {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.phone-icon svg {
    width: 50px;
    height: 50px;
}

/* Footer */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 0; /* Ensure no gap if contact section has gradient */
}

footer p {
    margin: 0;
    font-size: 0.9em;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none; /* Hidden by default on larger screens */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav ul */
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 1200px) { /* Breakpoint for 4 cards to wrap to 2x2 */
    .pricing-cards {
        flex-wrap: wrap; /* Allow wrapping now */
        justify-content: center;
    }
    .pricing-card {
        flex: 0 1 calc(50% - 10px); /* Two cards per row, considering gap */
        max-width: calc(50% - 10px); /* Ensure max-width respects 2-column layout */
        margin-bottom: 15px; /* Add margin for wrapped items */
    }

    /* Hamburger menu is already styled above, media query below will show it */

    @media (max-width: 768px) {
        header .container {
            flex-direction: row; /* Keep logo and hamburger on same line */
            justify-content: space-between;
            align-items: center;
            position: relative; /* For positioning the nav ul */
        }

        .hamburger-menu {
            display: block; /* Show hamburger on small screens */
        }

        nav ul {
            display: none; /* Hide nav by default on small screens */
            flex-direction: column;
            position: absolute;
            top: 100%; /* Position below the header */
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 10px 0;
            margin-top: 0; /* Reset margin */
            z-index: 1000;
        }

        nav ul.active {
            display: flex; /* Show nav when active */
        }

        nav ul li {
            margin: 10px 20px; /* Adjust margin for vertical layout */
            text-align: center;
        }

        .language-switcher {
            margin-left: 0;
            margin-top: 10px; /* Space it from nav items if nav is open */
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .language-switcher select {
            width: auto; /* Or a specific percentage if needed */
        }

        /* Hamburger animation when active */
        .hamburger-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        h1 {
            font-size: 2.5em;
        }
        .hero-section h1 {
            font-size: 2.8em;
        }
        .hero-section {
            padding-top: 150px; /* Adjust for fixed header */
            padding-bottom: 80px;
        }
        .service-cards {
            justify-content: flex-start; /* Align cards to the start for scrolling */
            padding: 0 20px; /* Add horizontal padding for better visual */
        }
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
}

@media (max-width: 768px) { /* Cards stack */
    .pricing-card {
        flex: 0 1 100%; /* Full width for smaller screens */
        max-width: 320px; /* Max width when stacked - adjusted */
        margin-left: auto;
        margin-right: auto;
    }
    nav ul {
        flex-wrap: wrap; /* Allow nav items to wrap */
        justify-content: center;
    }
    nav ul li {
        margin: 5px 10px; /* Adjust margin for wrapped nav items */
    }

    h1 {
        font-size: 2.5em;
    }
    .hero-section h1 {
        font-size: 2.8em;
    }
    .hero-section {
        padding-top: 150px; /* Adjust for fixed header */
        padding-bottom: 80px;
    }
    header .container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 10px;
    }
    nav ul li {
        margin: 0 10px;
    }
    .service-cards,
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Hamburger Menu Styles */
    .hamburger-menu {
        display: none; /* Hidden by default */
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001; /* Above nav ul */
    }

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px 0;
        transition: all 0.3s ease-in-out;
    }

    @media (max-width: 768px) {
        header .container {
            flex-direction: row; /* Keep logo and hamburger on same line */
            justify-content: space-between;
            align-items: center;
            position: relative; /* For positioning the nav ul */
        }

        .hamburger-menu {
            display: block; /* Show hamburger on small screens */
        }

        nav ul {
            display: none; /* Hide nav by default on small screens */
            flex-direction: column;
            position: absolute;
            top: 100%; /* Position below the header */
            left: 0;
            width: 100%;
            background-color: #ffffff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 10px 0;
            margin-top: 0; /* Reset margin */
            z-index: 1000;
        }

        nav ul.active {
            display: flex; /* Show nav when active */
        }

        nav ul li {
            margin: 10px 20px; /* Adjust margin for vertical layout */
            text-align: center;
        }

        .language-switcher {
            margin-left: 0;
            margin-top: 10px; /* Space it from nav items if nav is open */
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .language-switcher select {
            width: auto; /* Or a specific percentage if needed */
        }

        /* Hamburger animation when active */
        .hamburger-menu.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .hamburger-menu.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger-menu.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        h1 {
            font-size: 2.5em;
        }
        .hero-section h1 {
            font-size: 2.8em;
        }
        .hero-section {
            padding-top: 150px; /* Adjust for fixed header */
            padding-bottom: 80px;
        }
        .service-cards,
        .features-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* Dashboard Styles */
.dashboard-section {
    padding: 120px 0 60px; /* Add top padding to account for fixed header */
    background-color: #f4f7f6;
    min-height: 100vh;
}

.dashboard-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.sidebar {
    flex: 0 0 280px; /* Fixed width sidebar */
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 25px;
    position: sticky;
    top: 140px; /* Stick below the fixed header */
}

.sidebar h3 {
    color: #4A148C;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
    border-bottom: 2px solid #f0e6f6;
    padding-bottom: 10px;
}

.user-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-menu li {
    margin-bottom: 10px;
}

.user-button {
    display: block;
    padding: 12px 15px;
    background-color: #f8f9fa;
    color: #4A148C;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.user-button:hover {
    background-color: #f0e6f6;
    border-left-color: #00BCD4;
    transform: translateX(5px);
    color: #4A148C;
}

.main-content {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.main-content h1 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #4A148C;
    font-size: 2.5em;
}

.welcome-message {
    background-color: #f0e6f6;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4A148C;
}

.welcome-message h2 {
    margin-top: 0;
    margin-bottom: 0;
    color: #4A148C;
    font-size: 1.8em;
    text-align: left;
    padding-top: 0;
}

/* Support Section Styles */
.support-section {
    background-color: #f0e6f6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #00BCD4;
    text-align: center;
}

.support-section h2 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #4A148C;
    font-size: 2em;
    text-align: center;
    padding-top: 0;
}

.support-email {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.support-email p {
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1em;
}

.support-email h3 {
    margin: 0;
    color: #00BCD4;
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar {
        flex: none;
        position: static;
        width: 100%;
    }
    
    .main-content h1 {
        font-size: 2em;
    }
    
    .dashboard-section {
        padding: 100px 0 40px;
    }
    
    .support-section h2 {
        font-size: 1.6em;
    }
    
    .support-email h3 {
        font-size: 1.4em;
    }
}