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

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
background: #FD0;
    color: black;
    padding: 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1.4rem;
}

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

.cookie-buttons button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
background: #FD0;
    color: black;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-0.2rem);
    box-shadow: 0 0.5rem 1.5rem rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 0.2rem solid #667eea;
    padding: 1.3rem 2.8rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-0.2rem);
}

/* Header */
.header {

background: #1C1C1C;
    backdrop-filter: blur(1rem);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}

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

.logo h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #667eea;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
    flex-wrap: wrap;
}

.nav-list a {
    color: #cbc5c5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #667eea;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.4rem;
}

.mobile-menu-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 8rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 30rem;
}

.hero-text h2 {
    font-size: 4.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    min-width: 30rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-card {
    flex: 1;
    min-width: 25rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
}

.service-image {
    margin-bottom: 2rem;
}

.service-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.8rem;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* About Us Section */
.about-us {
    padding: 8rem 0;
    background: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-images {
    flex: 1;
    min-width: 30rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-images img {
    flex: 1;
    min-width: 20rem;
    height: 25rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.steps {
    padding: 8rem 0;
    background: white;
}

.steps-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.steps-image {
    flex: 1;
    min-width: 30rem;
}

.steps-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

.steps-text {
    flex: 1;
    min-width: 30rem;
}

.steps-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
    border-left: 0.4rem solid #667eea;
}

.step-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* Growth Keys Section */
.growth-keys {
    padding: 8rem 0;
    background: #f8f9fa;
}

.keys-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
}

.key-item {
    flex: 1;
    min-width: 25rem;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.key-item h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.key-item p {
    color: #666;
    line-height: 1.6;
}

.keys-cta {
    text-align: center;
}

/* Trust Section */
.trust {
    padding: 8rem 0;
    background: white;
}

.trust-content {
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1;
    min-width: 30rem;
}

.trust-text h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.trust-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 1rem;
}

.trust-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

.trust-image {
    flex: 1;
    min-width: 30rem;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #f8f9fa;
}

.contact-content {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.6rem;
    color: #666;
}

.contact-map {
    flex: 1;
    min-width: 30rem;
}

.contact-map img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 20rem;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #667eea;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid #333;
}

.footer-bottom p {
    color: #999;
    font-size: 1.4rem;
}

/* Success Page */
.success-section {
    padding: 12rem 0 8rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-top: 8rem;
    text-align: center;
}

.success-content {
    max-width: 80rem;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 3rem;
}

.success-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.success-content > p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.next-steps {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 1rem 0;
    border-bottom: 0.1rem solid #eee;
    position: relative;
    padding-left: 3rem;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1rem;
    color: #10B981;
    font-weight: bold;
}

.next-steps li:last-child {
    border-bottom: none;
}

.success-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.contact-reminder {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.contact-reminder h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.contact-reminder p {
    color: #666;
    margin-bottom: 0.5rem;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-text h2 {
        font-size: 3.2rem;
    }

    .hero-text p {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .hero-content,
    .about-content,
    .steps-content,
    .trust-content {
        flex-direction: column;
        text-align: center;
    }

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

    .about-images {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .success-content h1 {
        font-size: 3rem;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions a {
        width: 100%;
        max-width: 30rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 9px;
    }

    .hero {
        padding: 10rem 0 6rem;
    }

    .hero-text h2 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .footer-content {
        flex-direction: column;
    }

    .services,
    .about-us,
    .steps,
    .growth-keys,
    .trust,
    .contact {
        padding: 6rem 0;
    }
}
/* Development Approach Section */
.development-approach {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
}

.approach-card {
    flex: 1;
    min-width: 28rem;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.approach-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.approach-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1.5rem;
}

.approach-cta {
    text-align: center;
}

/* Trust and Strategy Section */
.trust-strategy {
    padding: 8rem 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #666;
    max-width: 80rem;
    margin: 0 auto 5rem;
    line-height: 1.6;
}

.strategy-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.strategy-step {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.strategy-step:hover {
    background: #f1f3f4;
    transform: translateX(1rem);
}

.step-number {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.6rem;
}

/* Team Section */
.team {
    padding: 8rem 0;
    background: #f8f9fa;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 28rem;
    max-width: 35rem;
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    font-size: 1.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .development-approach,
    .trust-strategy,
    .team {
        padding: 6rem 0;
    }

    .approach-grid,
    .team-grid {
        flex-direction: column;
        gap: 2.5rem;
    }

    .approach-card,
    .team-member {
        min-width: 100%;
    }

    .strategy-step {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .strategy-step:hover {
        transform: translateY(-0.5rem);
    }

    .step-number {
        margin: 0 auto;
    }

    .member-image {
        width: 12rem;
        height: 12rem;
    }

    .team-member h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .approach-card,
    .team-member {
        padding: 2rem;
    }

    .strategy-step {
        padding: 2rem;
    }

    .step-number {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }

    .member-image {
        width: 10rem;
        height: 10rem;
    }
}
/* ProFinance Difference Section */
.profinance-difference {
    padding: 8rem 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.difference-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 5rem;
}

.difference-card {
    flex: 1;
    min-width: 28rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 0.1rem solid rgba(255, 255, 255, 0.2);
}

.difference-card:hover {
    transform: translateY(-0.8rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.difference-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1565c0;
    margin-bottom: 1.5rem;
}

.difference-card p {
    color: #424242;
    line-height: 1.6;
    font-size: 1.5rem;
}

.difference-cta {
    text-align: center;
}

/* Expert Team Section */
.expert-team {
    padding: 8rem 0;
    background: white;
}

.experts-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
}

.expert-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #212121;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
}

.expert-image {
    flex-shrink: 0;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0.3rem solid #667eea;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
}

.expert-content {
    flex: 1;
}

.expert-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.expert-content p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1.5rem;
}

/* Internship Process Section */
.internship-process {
    padding: 8rem 0;
    background: #f8f9fa;
}

.section-description {
    text-align: center;
    font-size: 1.6rem;
    color: #666;
    max-width: 85rem;
    margin: 0 auto 5rem;
    line-height: 1.7;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(1rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
}

.step-icon {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1.5rem rgba(102, 126, 234, 0.3);
}

.step-number {
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.6rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .profinance-difference,
    .expert-team,
    .internship-process {
        padding: 6rem 0;
    }

    .difference-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .difference-card {
        min-width: 100%;
        padding: 2.5rem;
    }

    .expert-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .expert-image {
        width: 10rem;
        height: 10rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2.5rem;
    }

    .process-step:hover {
        transform: translateY(-0.5rem);
    }

    .step-icon {
        width: 5rem;
        height: 5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .expert-content h3 {
        font-size: 1.8rem;
    }

    .step-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .difference-card,
    .expert-card,
    .process-step {
        padding: 2rem;
    }

    .expert-image {
        width: 8rem;
        height: 8rem;
    }

    .step-icon {
        width: 4.5rem;
        height: 4.5rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .difference-card h3,
    .expert-content h3,
    .step-content h3 {
        font-size: 1.6rem;
    }

    .section-description {
        font-size: 1.5rem;
    }
}
/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-wrapper {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Contact Information */
.contact-info {
    flex: 1;
    min-width: 35rem;
}

.contact-info h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.contact-details,
.additional-info {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-label {
    font-weight: 600;
    color: #333;
    min-width: 8rem;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-value {
    color: #666;
    font-size: 1.5rem;
    line-height: 1.4;
}

.contact-value div {
    margin-bottom: 0.2rem;
}

/* Contact Form */
.contact-form-wrapper {
    flex: 1;
    min-width: 35rem;
    max-width: 45rem;
}

.contact-form {
    background: white;
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.8rem 2rem;
    border: 0.1rem solid #e1e5e9;
    border-radius: 1rem;
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background: #f8f9fa;
    transition: all 0.3s ease;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 0.3rem rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-submit {
    width: 100%;
    padding: 2rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.btn-submit:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2rem rgba(102, 126, 234, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 0;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .contact-info,
    .contact-form-wrapper {
        min-width: 100%;
    }

    .contact-info h2 {
        font-size: 2.8rem;
        text-align: center;
    }

    .contact-subtitle {
        text-align: center;
    }

    .contact-form {
        padding: 3rem;
    }

    .contact-item {
        flex-direction: column;
        margin-bottom: 2.5rem;
    }

    .contact-label {
        margin-bottom: 0.5rem;
        margin-right: 0;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .contact-info h2 {
        font-size: 2.4rem;
    }

    .contact-form {
        padding: 2.5rem;
        border-radius: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1.5rem;
        font-size: 1.4rem;
    }

    .btn-submit {
        padding: 1.8rem;
        font-size: 1.5rem;
    }

    .contact-details,
    .additional-info {
        margin-bottom: 2.5rem;
    }

    .contact-item {
        margin-bottom: 2rem;
    }
}