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

:root {
    --primary-purple: #932092;
    --secondary-purple: #9333EA;
    --primary-blue: #1e40af;
    --secondary-blue: #3b82f6;
    --accent-green: #87C000;
    --light-green: #659000;
    --dark-gray: #1F2937;
    --medium-gray: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    --gradient-accent: linear-gradient(135deg, var(--accent-green), var(--light-green));
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-purple);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Navigation Active States - Higher specificity to override display:none */
@media (max-width: 768px) {
    .nav-container .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
        border-top: 1px solid #eee;
        list-style: none;
        gap: 0;
    }

    .nav-container .nav-menu.active li {
        text-align: center;
        padding: 0;
        margin: 0;
        transition: background-color 0.2s ease;
    }
    
    .nav-container .nav-menu.active li:hover {
        background-color: var(--light-gray);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 6px);
        background: var(--white);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
        background: var(--white);
    }
    
    .nav-container .nav-menu.active li a {
        color: var(--dark-gray);
        display: block;
        padding: 0.75rem 1rem;
        transition: color 0.2s ease;
    }
    
    .nav-container .nav-menu.active li:hover a {
        color: var(--primary-purple);
    }
}

/* Hero Section */
.hero {
    background: var(--dark-gray);
    color: var(--white);
    padding: 120px 0 80px;
    margin-top: 80px;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--white);
    border: 2px solid var(--light-green);
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-purple);
    color: var(--white);
    border: 2px solid #5b1a5b;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-purple);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    box-shadow: 12px 16px 40px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-image-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 2rem;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--medium-gray);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--dark-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonial-card {
    background: #374151;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--accent-green);
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.testimonial-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

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

.contact-info-expanded {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-expanded h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.contact-info-expanded p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-expanded .contact-methods {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-expanded .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.contact-method strong {
    color: var(--primary-purple);
    min-width: 80px;
}

.contact-info-expanded .contact-method strong {
    font-size: 1.2rem;
    min-width: auto;
}

.contact-method a {
    color: var(--accent-green);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--light-gray);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.footer-links ul li a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-green);
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-contact p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-contact p a {
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact p a:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: var(--light-gray);
}

/* Training Workshops Page Styles */
.overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

.overview-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

.workshops {
    padding: 80px 0;
    background: var(--light-gray);
}

.workshops-main-container {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.workshop-category {
    margin-bottom: 60px;
}

.workshop-category:not(:first-child) {
    margin-top: 80px;
}

.workshop-category:last-child {
    margin-bottom: 0;
}

.category-title {
    color: var(--primary-purple);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid var(--accent-green);
    padding-bottom: 15px;
}

.workshops-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.workshop-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.workshop-header {
    background: var(--dark-gray);
    color: var(--white);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.workshop-header:hover {
    background: #374151;
}

.workshop-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.workshop-title-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.workshop-toggle {
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.workshop-card.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.workshop-content {
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.workshop-card.collapsed .workshop-content {
    max-height: 0;
    padding: 0 2rem;
    opacity: 0;
}

.workshop-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.workshop-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.workshop-content {
    padding: 2rem;
}

.workshop-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workshop-topics {
    list-style: none;
    margin-bottom: 1.5rem;
}

.workshop-topics li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.workshop-topics li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.workshop-audience {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.workshop-audience strong {
    color: var(--primary-purple);
}

/* About Page Styles */
.leadership-content {
    padding: 2rem 0;
}

.leader-profile {
    display: grid;
    grid-template-columns: 200px 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.leader-headshot {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.headshot-image {
    width: 180px;
    height: 220px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(147, 32, 146, 0.2);
    border: 4px solid var(--accent-green);
}

.leader-info h4 {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.leader-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.leader-expertise h5 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-green);
    padding-bottom: 0.5rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
    padding-left: 1rem;
    text-indent: -1rem;
}

.expertise-list li:before {
    content: "✓";
    color: var(--accent-green);
    font-weight: bold;
    margin-right: 0;
    display: inline-block;
    width: 1rem;
}

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

.experience-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-green);
}

.experience-card h4 {
    color: var(--primary-purple);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.experience-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .leader-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .leader-headshot {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .headshot-image {
        width: 150px;
        height: 180px;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
}

.formats {
    padding: 80px 0;
    background: var(--white);
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.format-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
}

.format-card h3 {
    color: var(--primary-purple);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.format-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.format-card ul {
    list-style: none;
}

.format-card ul li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.format-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.training-info {
    margin-top: 2rem;
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
}

.training-info h3 {
    color: var(--primary-purple);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.training-info ul {
    list-style: none;
}

.training-info ul li {
    padding: 0.3rem 0;
    color: var(--medium-gray);
}

.training-info ul li strong {
    color: var(--dark-gray);
}

/* College Callout Strip (index.html) */
.college-callout {
    padding: 40px 0;
    background: var(--primary-purple);
}

.college-callout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.college-callout-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.college-callout-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

.college-callout .btn-primary {
    white-space: nowrap;
    flex-shrink: 0;
    background: var(--accent-green);
    border-color: var(--light-green);
}

@media (max-width: 768px) {
    .college-callout-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Community Colleges Section */
.community-colleges {
    padding: 80px 0;
    background: var(--light-gray);
}

.colleges-title {
    color: var(--dark-gray);
}

.colleges-intro {
    text-align: center;
    max-width: 720px;
    margin: -1.5rem auto 3rem;
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.colleges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.college-logo-card {
    background: transparent;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: transform 0.3s ease;
}

.college-logo-card:hover {
    transform: translateY(-4px);
}

.college-logo-card img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
}

.college-logo-card:not(.college-logo-dark) img {
    mix-blend-mode: multiply;
}

.college-logo-card img.logo-full-width {
    max-height: none;
    width: 100%;
}

.college-logo-card.college-logo-dark {
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 1.25rem;
}

.college-logo-card.college-logo-dark img {
    max-height: 95px;
}

@media (max-width: 768px) {
    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .colleges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .college-logo-card {
        padding: 1rem;
        min-height: 85px;
    }
}

.contact-form h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Custom Select Dropdown Styles */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.select-trigger:hover {
    border-color: var(--primary-purple);
}

.select-trigger.active {
    border-color: var(--primary-purple);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.select-text {
    color: var(--dark-gray);
}

.select-arrow {
    font-size: 12px;
    color: var(--medium-gray);
    transition: transform 0.3s ease;
}

.select-trigger.active .select-arrow {
    transform: rotate(180deg);
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.custom-select.active .select-options {
    display: block;
}

.select-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.select-option:hover {
    background-color: #f9fafb;
}

.select-option:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.select-option.selected {
    background-color: #f3f4f6;
    color: var(--primary-purple);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info-expanded h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-expanded p {
        font-size: 1.1rem;
    }
    
    .contact-info-expanded .contact-methods {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        max-width: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .clients-row {
        gap: 1rem !important;
        padding: 1rem 0.5rem !important;
    }
    
    .client-logo img {
        height: 50px !important;
    }
}