/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #2f5047 !important;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: #ff8057;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-logo .tagline {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ff8057;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: #ff8057;
}

.nav-cta {
    background: #ff8057;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #e56b42;
    transform: translateY(-1px);
}

/* Navbar scrolled state styles */
.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link {
    color: #333;
}

.navbar.scrolled .nav-link:hover {
    color: #ff8057;
}

.navbar.scrolled .nav-phone {
    color: #2f5047;
}

.navbar.scrolled .nav-logo h2 {
    color: #2f5047;
}

.navbar.scrolled .nav-link.has-dropdown::after {
    color: #333;
}

.navbar.scrolled .nav-menu li:hover .nav-link.has-dropdown::after {
    color: #ff8057;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar.scrolled .bar {
    background-color: #333;
}
/* Dropdown Menu Styles */
.nav-menu li {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:link,
.dropdown-item:visited {
    color: #333 !important;
}

.dropdown-item:active {
    color: #333 !important;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #ff8057;
    color: white;
}

.dropdown-section {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: #ff8057;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    background: #f8fafa;
}

.nav-link.has-dropdown::after {
    content: '▾';
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: white;
}

.nav-menu li:hover .nav-link.has-dropdown::after {
    transform: rotate(180deg);
    color: #ff8057;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #f8fafa;
    color: #2f5047;
    padding-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #2f5047;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #666;
}

.hero-description-sub {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #ff8057;
    color: white;
}

.btn-primary:hover {
    background: #e56b42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 128, 87, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2f5047;
    border: 2px solid #2f5047;
}

.btn-secondary:hover {
    background: #2f5047;
    color: white;
    transform: translateY(-2px);
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff8057, #e56b42);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image.large {
    grid-row: 1 / 3;
}

.hero-image-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.hero-guarantee {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #ff8057;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(255, 128, 87, 0.3);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.hero-rating .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2f5047;
}

section {
    padding: 5rem 0;
}

/* About Section */
.about {
    background: #f8fafa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #2f5047;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.2rem;
    color: #ff8057;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature i {
    color: #ff8057;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #2f5047;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff8057;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #2f5047;
    font-weight: 500;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #f8fafa;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ff8057;
}

.service-card.featured {
    background: #ff8057;
    color: white;
}

.service-card.featured .service-icon {
    background: white;
    color: #ff8057;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ff8057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2f5047;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-card.featured .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2f5047;
    font-weight: bold;
}

.service-card.featured .service-list li:before {
    color: white;
}

/* Areas Section */
.areas {
    background: #f8fafa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.area-item h4 {
    color: #2f5047;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.area-item ul {
    list-style: none;
}

.area-item li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.area-item li:last-child {
    border-bottom: none;
}

.service-note {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-note p {
    color: #2f5047;
    font-weight: 500;
}

.service-note i {
    color: #ff8057;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff8057;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: #2f5047;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-weight: 500;
}

.contact-form {
    background: #f8fafa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: #2f5047;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff8057;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

.form-note {
    text-align: center;
    color: #2f5047;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #2f5047;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff8057;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a6b5e;
    color: #aaa;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo {
        display: none;
    }
    
    .nav-logo h2 {
        font-size: 1.4rem;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        min-height: 44px;
        min-width: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .navbar.scrolled .bar {
        background-color: #333;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding-top: 100px;
        z-index: 1000;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(0);
    }
    
    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 0;
        display: block;
        color: #333 !important;
        font-weight: 500;
        transition: background-color 0.2s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 128, 87, 0.1);
        color: #ff8057 !important;
    }
    
    .nav-link.has-dropdown {
        position: relative;
        cursor: pointer;
    }
    
    .nav-link.has-dropdown::after {
        content: '▼';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        color: #ff8057;
        transition: transform 0.3s ease;
    }
    
    .nav-link.has-dropdown.active::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        border-radius: 0;
        min-width: auto;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    .nav-menu li:hover .dropdown {
        display: none; /* Disable hover on mobile */
    }
    
    .dropdown.active {
        display: block;
        max-height: 500px;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-item {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 128, 87, 0.1);
        color: #333 !important;
        text-decoration: none !important;
        display: block;
        transition: background-color 0.2s ease;
        position: relative;
        min-height: 44px;
        display: flex;
        align-items: center;
        cursor: pointer;
        width: 100%;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 128, 87, 0.2) !important;
        color: #333 !important;
    }
    
    .dropdown-item:active {
        background: rgba(255, 128, 87, 0.3) !important;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-section {
        padding: 0.8rem 2rem;
        background: rgba(255, 128, 87, 0.2);
        font-size: 0.75rem;
        font-weight: 600;
        color: #ff8057;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-bottom: 1px solid rgba(255, 128, 87, 0.3);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.3;
        color: #666;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Mobile Navigation Improvements */
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo h2 {
        margin: 0;
        font-size: 1.5rem;
    }
    
    .nav-logo .tagline {
        font-size: 0.7rem;
    }
    
    .nav-contact {
        display: none;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: left;
    }
    
    .nav-link.has-dropdown {
        position: relative;
        cursor: pointer;
        user-select: none;
    }
    
    .nav-link.has-dropdown::after {
        content: '▼';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }
    
    .nav-link.has-dropdown.active::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Ensure dropdowns are properly hidden by default on mobile */
    .dropdown {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    .dropdown.active {
        display: block !important;
        max-height: 500px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .nav-logo {
        display: none;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo .tagline {
        font-size: 0.6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .hero-placeholder {
        height: 200px;
        margin: 1rem 0;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Mobile navigation improvements */
    .nav-menu {
        padding-top: 80px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .dropdown-item {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .dropdown-section {
        padding: 0.7rem 1.5rem;
        font-size: 0.7rem;
    }
}