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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand .brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f36;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1f36;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9f43;
}

/* Hero Section */
.hero-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    min-height: calc(100vh - 80px);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 500px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1f36;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-demo {
    display: inline-block;
    background-color: #ff9f43;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-demo:hover {
    background-color: #f58820;
}

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

.hero-right img {
    max-width: 100%;
    height: auto;
}

/* Testimonial Section */
.testimonial-section {
    background-color: #f9f9fb;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section .bg-svg {
    position: absolute;
    z-index: 1;
}

.testimonial-section .bg-svg.green-orange {
    top: 50px;
    left: 100px;
}

.testimonial-section .bg-svg.circle {
    bottom: 50px;
    right: 100px;
}

.testimonial-section .bg-svg img {
    width: auto;
    height: auto;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

.testimonial-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-text .gray-text {
    color: #5e6c84;
}

.testimonial-text .teal-text {
    color: #1a8a8e;
    font-weight: 600;
}

.testimonial-author {
    font-size: 16px;
    color: #1a1f36;
    font-weight: 500;
}

/* Features Section */
.features-section {
    background-color: #e8e9ed;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
}

/* Matching Experiences Section */
.matching-experiences-section {
    background-color: #fff;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
}

.matching-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.matching-content:not(:last-child) {
    margin-bottom: 100px;
}

.matching-content.reverse {
    flex-direction: row-reverse;
}

.matching-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.matching-image img {
    max-width: 100%;
    height: auto;
}

.matching-text {
    flex: 1;
}

.matching-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 20px;
    line-height: 1.3;
}

.matching-text .intro-text {
    font-size: 18px;
    color: #5e6c84;
    margin-bottom: 24px;
    line-height: 1.6;
}

.matching-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.matching-text ul li {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.matching-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1f36;
    font-weight: bold;
}

.learn-more-link {
    color: #1a1f36;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #ff9f43;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f9f9fb;
    padding: 100px 0;
}

.testimonials-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.g2-logo-center {
    text-align: center;
    margin-bottom: 60px;
}

.g2-logo-center img {
    width: 80px;
    height: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-item.featured {
    border: 3px solid #ff9f43;
}

.testimonial-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
    line-height: 1.4;
}

.testimonial-item p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.g2-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-role {
    font-size: 14px;
    color: #1a1f36;
    font-weight: 600;
    margin-bottom: 6px;
}

.star-rating {
    display: flex;
    gap: 2px;
}

.star-rating img {
    width: 14px;
    height: 14px;
}

/* CTA Section */
.cta-section {
    background-color: #1a1f36;
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.cta-form-wrapper {
    flex: 1;
    color: #fff;
}

.guide-badge {
    display: inline-block;
    background-color: #1a8a8e;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-form-wrapper h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-form-wrapper > p {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.form-group input[type="email"],
.form-group input[type="text"] {
    padding: 12px 16px;
    border: 1px solid #4b5563;
    border-radius: 4px;
    font-size: 16px;
    background-color: #fff;
    color: #1a1f36;
}

.form-group input[type="email"]::placeholder {
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 400;
}

.btn-submit {
    background-color: #ff9f43;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #f58820;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #5e6c84;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #1a1f36;
}

.modal-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
}

.modal-content p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 100px 0;
}

.faq-content {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.faq-left {
    flex: 0 0 400px;
}

.faq-left h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-left p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.6;
    margin-bottom: 24px;
}

.btn-expert {
    display: inline-block;
    background-color: #ff9f43;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-expert:hover {
    background-color: #f58820;
}

.faq-right {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1f36;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff9f43;
}

.faq-icon {
    font-size: 24px;
    color: #9ca3af;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.faq-answer ul li {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.faq-answer ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1f36;
    font-weight: bold;
}

/* FAQ Final CTA */
.faq-final-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid #e5e7eb;
}

.perfect-match-icon {
    margin-bottom: 40px;
}

.perfect-match-icon img {
    width: 120px;
    height: auto;
}

.faq-final-cta h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
    line-height: 1.3;
}

.faq-final-cta p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-demo-primary {
    display: inline-block;
    background-color: #ff9f43;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-demo-primary:hover {
    background-color: #f58820;
}

.btn-platform {
    display: inline-block;
    background-color: #e5e7eb;
    color: #1a1f36;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-platform:hover {
    background-color: #d1d5db;
}

/* Footer */
.footer {
    background-color: #1a1f36;
    padding: 60px 0 30px;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff9f43;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ff9f43;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .testimonial-section .bg-svg.green-orange {
        top: 20px;
        left: 20px;
    }

    .testimonial-section .bg-svg.circle {
        bottom: 20px;
        right: 20px;
    }

    .testimonial-section .bg-svg img {
        max-width: 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .matching-experiences-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .matching-content {
        flex-direction: column;
        gap: 40px;
    }

    .matching-content:not(:last-child) {
        margin-bottom: 60px;
    }

    .matching-content.reverse {
        flex-direction: column;
    }

    .matching-text h3 {
        font-size: 24px;
    }

    .matching-text .intro-text {
        font-size: 16px;
    }

    .matching-text ul li {
        font-size: 15px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .g2-logo-center {
        margin-bottom: 40px;
    }

    .g2-logo-center img {
        width: 60px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-item h4 {
        font-size: 16px;
    }

    .testimonial-item p {
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        flex-direction: column;
        gap: 40px;
    }

    .cta-form-wrapper h2 {
        font-size: 28px;
    }

    .cta-form-wrapper > p {
        font-size: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px;
    }

    .modal-content h3 {
        font-size: 24px;
    }

    .modal-content p {
        font-size: 16px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-content {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        flex: 1;
    }

    .faq-left h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 0;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 14px;
    }

    .faq-final-cta {
        margin-top: 60px;
        padding-top: 60px;
    }

    .perfect-match-icon img {
        width: 80px;
    }

    .faq-final-cta h2 {
        font-size: 28px;
    }

    .faq-final-cta p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-demo-primary,
    .btn-platform {
        width: 100%;
        max-width: 300px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-column h4 {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
    padding: 100px 0;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-content p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* About Mission Section */
.about-mission {
    background-color: #fff;
    padding: 100px 0;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 24px;
    line-height: 1.3;
}

.mission-text p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* What We Do Section */
.about-what-we-do {
    background-color: #f9f9fb;
    padding: 100px 0;
}

.about-what-we-do h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 18px;
    color: #5e6c84;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.what-we-do-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.wwd-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.wwd-item:last-child {
    margin-bottom: 0;
}

.wwd-item.reverse {
    flex-direction: row-reverse;
}

.wwd-image {
    flex: 1;
}

.wwd-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.wwd-content {
    flex: 1;
}

.wwd-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
    line-height: 1.3;
}

.wwd-content p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.8;
}

/* Technology Section */
.about-technology {
    background-color: #fff;
    padding: 100px 0;
}

.tech-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tech-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
}

.tech-header p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-feature {
    text-align: center;
}

.tech-image {
    margin-bottom: 30px;
}

.tech-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.tech-feature h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
}

.tech-feature p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.8;
}

/* Why Choose Us Section */
.about-why-choose {
    background-color: #f9f9fb;
    padding: 100px 0;
}

.about-why-choose h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.6;
}

/* Impact Section */
.about-impact {
    background-color: #1a1f36;
    padding: 80px 0;
}

.impact-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stat {
    text-align: center;
}

.impact-stat h3 {
    font-size: 56px;
    font-weight: 700;
    color: #ff9f43;
    margin-bottom: 12px;
}

.impact-stat p {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
}

/* About CTA Section */
.about-cta {
    background-color: #fff;
    padding: 100px 0;
}

.about-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 18px;
    color: #5e6c84;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-mission,
    .about-what-we-do,
    .about-technology,
    .about-why-choose,
    .about-cta {
        padding: 60px 0;
    }

    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .mission-text h2,
    .about-what-we-do h2,
    .tech-header h2,
    .about-why-choose h2,
    .impact-content h2,
    .about-cta-content h2 {
        font-size: 28px;
    }

    .wwd-item,
    .wwd-item.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .wwd-content h3 {
        font-size: 24px;
    }

    .tech-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-impact {
        padding: 60px 0;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .impact-stat h3 {
        font-size: 40px;
    }
}

/* Contact Page Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a1f36 0%, #2d3561 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 20px;
    color: #d1d5db;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #f9f9fb;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 8px;
}

.contact-detail-item p {
    font-size: 16px;
    color: #5e6c84;
    line-height: 1.6;
    margin: 0;
}

.contact-detail-item a {
    font-size: 16px;
    color: #5e6c84;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: #ff9f43;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1f36;
    margin-bottom: 12px;
}

.contact-form-wrapper > p {
    font-size: 16px;
    color: #5e6c84;
    margin-bottom: 32px;
}

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

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus {
    outline: none;
    border-color: #ff9f43;
}

.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
}

.contact-form textarea:focus {
    outline: none;
    border-color: #ff9f43;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

/* Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 24px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 24px;
    }
}
