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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.site-logo {
    height: 45px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header-link:hover {
    color: #007bff;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.header-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .site-logo {
        height: 35px;
    }
    
    .header-nav {
        gap: 1.5rem;
    }
    
    .header-link {
        font-size: 0.9rem;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.hero-target {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

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

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

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 4;
    overflow: hidden;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-target {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
}

.what-we-do {
    padding: 80px 2rem;
    background-color: #ffffff;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 0.5rem;
}

.section-description.strong {
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-group {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
    font-size: 1.1rem;
}

.section-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

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

@media (max-width: 1024px) {
    .what-we-do {
        padding: 60px 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .section-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 40px 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-group {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
}

.sectors {
    padding: 80px 2rem;
    background-color: #f8f9fa;
}

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

.sector-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    width: 100%;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sector-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

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

.sector-list li {
    padding: 0.65rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sector-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .sectors {
        padding: 60px 1.5rem;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .sectors {
        padding: 40px 1rem;
    }
    
    .sectors-grid {
        gap: 1.25rem;
    }
    
    .sector-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .sector-title {
        font-size: 1.1rem;
    }
    
    .sector-list li {
        font-size: 0.9rem;
    }
}

.why-work-with-us {
    padding: 80px 2rem;
    background-color: #ffffff;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.intro-content {
    text-align: left;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.director-info {
    text-align: center;
    margin-bottom: 3rem;
}

.director-name {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.director-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.director-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.testimonial-quote {
    font-size: 0.8rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: #007bff;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 1024px) {
    .why-work-with-us {
        padding: 60px 1.5rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .intro-content {
        text-align: center;
    }
    
    .testimonial {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-work-with-us {
        padding: 40px 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .testimonial-quote::before {
        font-size: 3rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-photo {
        width: 70px;
        height: 70px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

.case-studies {
    padding: 80px 2rem;
    background-color: #f8f9fa;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card:nth-child(1),
.case-study-card:nth-child(2),
.case-study-card:nth-child(3) {
    grid-column: span 2;
}

.case-study-card:nth-child(4),
.case-study-card:nth-child(5) {
    grid-column: span 3;
}

.case-study-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.case-study-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.case-logo {
    margin-bottom: 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tag {
    background-color: #f8f9fa;
    color: #555;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: 100%;
    margin-top: auto;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .case-studies {
        padding: 60px 1.5rem;
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .case-study-card:nth-child(1),
    .case-study-card:nth-child(2),
    .case-study-card:nth-child(3),
    .case-study-card:nth-child(4),
    .case-study-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .case-studies {
        padding: 40px 1rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study-card {
        padding: 2rem;
    }
    
    .case-logo {
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
}

.verified-reviews {
    padding: 80px 2rem;
    background-color: #ffffff;
}

.verification-text {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.verification-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.verification-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.reviews-carousel-wrapper {
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    max-height: 600px;
}

.reviews-carousel {
    display: flex;
    flex-direction: column;
    transition: transform 1.5s ease;
}

.reviews-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.review-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    padding-left: 1.5rem;
}

.review-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.3rem;
    font-size: 3rem;
    color: #007bff;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.review-author {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.review-author .author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.review-author .author-role {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 1024px) {
    .verified-reviews {
        padding: 60px 1.5rem;
    }
    
    .reviews-row {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel-wrapper {
        max-height: 800px;
    }
}

@media (max-width: 768px) {
    .verified-reviews {
        padding: 40px 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-quote {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }
    
    .review-quote::before {
        font-size: 2.5rem;
    }
    
    .reviews-carousel-wrapper {
        max-height: 600px;
    }
}

.contact-section {
    padding: 80px 2rem;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.1rem;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: #0056b3;
}

.contact-form-wrapper {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 60px 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info {
        gap: 2rem;
    }
}

.about-hero {
    background: #1a1a1a;
    color: white;
    padding: 120px 2rem 80px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 2rem;
    background-color: #ffffff;
}

.about-section {
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

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

.approach-item {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.approach-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.approach-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.leadership-content {
    margin-top: 2rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    border-bottom: 1px solid #e9ecef;
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
    font-size: 1.2rem;
}

.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 100px 1.5rem 60px;
    }
    
    .about-content {
        padding: 60px 1.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.3rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 1rem 40px;
    }
    
    .about-content {
        padding: 40px 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-list li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .about-cta {
        padding: 3rem 1.5rem;
    }
}

.contact-info-section {
    margin-top: 1.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-hero {
    background: #1a1a1a;
    color: white;
    padding: 120px 2rem 80px;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    position: relative;
    padding: 80px 2rem 30px;
    margin-top: 0;
}

.footer-wave {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007bff;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.footer-text.strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

@media (max-width: 1024px) {
    .main-footer {
        padding: 50px 1.5rem 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 1rem 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

