/* Reset and Base */
html {
    font-size: 10px;
}

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

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: #333;
    font-size: 1.6rem;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 35rem;
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #666;
}

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

.btn-accept {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
}

.btn-reject {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}

.logo {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c5aa0;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.3rem;
}

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f7f9fc 0%, #e8f1ff 100%);
    padding: 12rem 0 8rem;
    text-align: center;
}

.hero-content {
    max-width: 90rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 1.4rem 3rem;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

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

.about-badge {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.about-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.about-subtitle {
    font-size: 1.6rem;
    color: #888;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.about-desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #1e3a8a;
}

.about-image {
    flex: 1;
    min-width: 32rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

/* Services Section */
.services-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.services-title {
    text-align: center;
    font-size: 3.6rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-box {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 26rem;
    max-width: 32rem;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f1ff;
    border-radius: 50%;
}

.service-icon img {
    width: 3.5rem;
    height: 3.5rem;
}

.service-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

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

/* Training Section */
.training-section {
    padding: 8rem 0;

    background: #094B72;
}

.training-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
    line-height: 1.3;
}

.training-grid {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.training-left,
.training-right {
    flex: 1;
    min-width: 32rem;
}

.training-item {
    margin-bottom: 4rem;
    padding: 3rem 2.5rem;
    background: #f8fafc;
    border-radius: 1.2rem;
    border-left: 5px solid #2c5aa0;
}

.training-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.training-item p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.why-choose-wrapper {
    display: flex;
    align-items: center;
    gap: 6rem;
    flex-wrap: wrap;
}

.why-choose-text {
    flex: 1;
    min-width: 32rem;
}

.why-choose-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.why-choose-desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-choose-image {
    flex: 1;
    min-width: 32rem;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

/* Growth Section */
.growth-section {
    padding: 8rem 0;
}

.growth-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
    line-height: 1.3;
}

.growth-grid {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.growth-left,
.growth-right {
    flex: 1;
    min-width: 32rem;
}

.growth-item {
    margin-bottom: 4rem;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.growth-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.growth-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.growth-item p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: #2c5aa0;
    color: white;
    padding: 8rem 0;
}

.contact-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4.5rem;
}

.contact-wrapper {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
    margin-bottom: 4.5rem;
}

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

.contact-intro {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-offices {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.office-item {
    flex: 1;
    min-width: 26rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 1.2rem;
    backdrop-filter: blur(10px);
}

.office-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.office-item p {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

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

.contact-map img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    border-radius: 1.2rem;
}

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

.contact-btn {
    display: inline-block;
    background: white;
    color: #2c5aa0;
    padding: 1.6rem 3.5rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-weight: 600;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.footer-brand h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    display: flex;
    gap: 4.5rem;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

.footer-column a {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Success Page Styles */
.success {
    padding: 12rem 0 8rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.success-icon {
    color: #10b981;
    margin-bottom: 3rem;
}

.success-title {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 3.6rem;
    font-weight: 600;
}

.success-description {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.success-info {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 1.2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.success-info h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
}

.success-info ul {
    list-style: none;
    padding: 0;
}

.success-info li {
    padding: 1.2rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #666;
    font-size: 1.6rem;
}

.success-info li:last-child {
    border-bottom: none;
}

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

.btn-primary {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 1.4rem 2.8rem;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1e3a8a;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2c5aa0;
    padding: 1.4rem 2.8rem;
    text-decoration: none;
    border: 2px solid #2c5aa0;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2c5aa0;
    color: white;
}

/* Mobile Navigation Styles */
.nav-menu.active {
    display: flex;
    position: fixed;
    top: 7.5rem;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 3rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    gap: 2.5rem;
}

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

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Animation Classes */
.service-box,
.training-item,
.growth-item {
    /*opacity: 0;*/
    transform: translateY(3rem);
    transition: all 0.6s ease;
}

.service-box.animate-in,
.training-item.animate-in,
.growth-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Effects */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Focus States */
.nav-link:focus,
.hero-btn:focus,
.about-btn:focus,
.contact-btn:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-title {
        font-size: 3.4rem;
    }

    .about-wrapper,
    .why-choose-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        max-width: 100%;
        min-width: auto;
    }

    .training-grid,
    .growth-grid {
        flex-direction: column;
        gap: 3rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        gap: 3rem;
    }

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

    .cookie-popup {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

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

    .hero-title {
        font-size: 3rem;
    }

    .services-title,
    .training-title,
    .growth-title {
        font-size: 2.8rem;
    }

    .about-title,
    .why-choose-title {
        font-size: 2.6rem;
    }
}

/* Vision Section */
.vision-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.vision-content {
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
}

.vision-title {
    font-size: 3.6rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.vision-subtitle {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.vision-description {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3.5rem;
    text-align: left;
}

.vision-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 1.4rem 3rem;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.vision-btn:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* About Info Section */
.about-info-section {
    padding: 8rem 0;
}

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

.about-info-image {
    flex: 1;
    min-width: 32rem;
}

.about-info-image img {
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
}

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

.about-info-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.about-info-desc {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-info-btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 1.2rem 2.4rem;
    text-decoration: none;
    border-radius: 0.6rem;
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.about-info-btn:hover {
    background: #1e3a8a;
}

/* Principles Section */
.principles-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.principles-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
    line-height: 1.3;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.principle-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 28rem;
    max-width: 36rem;
    transition: all 0.3s ease;
}

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

.principle-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f1ff;
    border-radius: 50%;
}

.principle-icon img {
    width: 3.5rem;
    height: 3.5rem;
}

.principle-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

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

/* Collaboration Section */
.collaboration-section {
    background: #2c5aa0;
    color: white;
    padding: 8rem 0;
}

.collaboration-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4.5rem;
    line-height: 1.3;
}

.collaboration-grid {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.collaboration-left,
.collaboration-right {
    flex: 1;
    min-width: 32rem;
}

.collaboration-item {
    margin-bottom: 4rem;
}

.collaboration-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.collaboration-item p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 8rem 0;
}

.team-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
    line-height: 1.3;
}

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.member-photo {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.member-title {
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .vision-title {
        font-size: 3rem;
    }

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

    .principles-grid,
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .principle-card,
    .team-member {
        max-width: 100%;
        min-width: auto;
    }

    .collaboration-grid {
        flex-direction: column;
        gap: 3rem;
    }
}

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

    .vision-title,
    .principles-title,
    .collaboration-title,
    .team-title {
        font-size: 2.8rem;
    }

    .about-info-title {
        font-size: 2.6rem;
    }
}

/* Future Business Section */
.future-business-section {
    padding: 8rem 0;
}

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

.future-title {
    font-size: 3.6rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.future-description {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Why Join Section */
.why-join-section {
    background: #2c5aa0;
    color: white;
    padding: 8rem 0;
}

.why-join-title {
    font-size: 3.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4.5rem;
    line-height: 1.3;
}

.why-join-grid {
    display: flex;
    gap: 6rem;
    flex-wrap: wrap;
}

.why-join-left,
.why-join-right {
    flex: 1;
    min-width: 32rem;
}

.why-join-item {
    margin-bottom: 4rem;
}

.why-join-item h3 {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.why-join-item p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Professional Development Section */
.professional-dev-section {
    background: #f8fafc;
    padding: 8rem 0;
}

.professional-dev-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
    line-height: 1.3;
}

.professional-dev-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.professional-dev-card {
    background: white;
    padding: 3.5rem 2.5rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 28rem;
    max-width: 36rem;
    transition: all 0.3s ease;
}

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

.professional-dev-icon {
    width: 7rem;
    height: 7rem;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f1ff;
    border-radius: 50%;
}

.professional-dev-icon img {
    width: 3.5rem;
    height: 3.5rem;
}

.professional-dev-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

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

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
}

.testimonials-title {
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 5rem;
    line-height: 1.3;
}

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

.testimonial-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 1.2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 28rem;
    max-width: 36rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-photo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.testimonial-info p {
    font-size: 1.4rem;
    color: #888;
    font-style: italic;
}

.testimonial-quote {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: #2c5aa0;
    position: absolute;
    top: 1rem;
    left: 2rem;
    line-height: 1;
}

.testimonial-quote::after {
    content: '"';
    font-size: 3rem;
    color: #2c5aa0;
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .future-title,
    .why-join-title,
    .professional-dev-title,
    .testimonials-title {
        font-size: 3rem;
    }

    .why-join-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .professional-dev-grid,
    .testimonials-grid {
        flex-direction: column;
        align-items: center;
    }

    .professional-dev-card,
    .testimonial-card {
        max-width: 100%;
        min-width: auto;
    }
}

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

    .future-title,
    .why-join-title,
    .professional-dev-title,
    .testimonials-title {
        font-size: 2.8rem;
    }
}

/* Consultation Reservation Section */
.consultation-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    padding: 8rem 0;
}

.consultation-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 3rem;
    line-height: 1.2;
}

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

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

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

.office-info {
    margin-bottom: 4rem;
}

.office-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.office-address {
    font-size: 1.6rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.office-contact {
    font-size: 1.6rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.office-contact strong {
    color: #2c5aa0;
    font-weight: 600;
}

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

.form-container {
    background: #2c5aa0;
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(44, 90, 160, 0.2);
}

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

.form-input {
    width: 100%;
    padding: 1.4rem 1.8rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: #999;
    font-style: italic;
}

.form-textarea {
    width: 100%;
    padding: 1.4rem 1.8rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    background: white;
    min-height: 12rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.form-textarea::placeholder {
    color: #999;
    font-style: italic;
}

.submit-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 1.6rem 2rem;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.submit-btn:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

/* Loading state */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form validation styles */
.form-input.error,
.form-textarea.error {
    border: 2px solid #ff6b6b;
    background-color: #ffe0e0;
}

.error-message {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin-top: 0.5rem;
    display: none;
}

.form-input.error + .error-message,
.form-textarea.error + .error-message {
    display: block;
}

/* Success message */
.success-message {
    background: #10b981;
    color: white;
    padding: 1.5rem;
    border-radius: 0.8rem;
    text-align: center;
    margin-bottom: 2rem;
    display: none;
}

.success-message.show {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .consultation-title {
        font-size: 3.4rem;
    }

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

    .contact-info,
    .contact-form {
        min-width: auto;
    }

    .form-container {
        padding: 3rem 2rem;
    }
}

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

    .consultation-title {
        font-size: 3rem;
    }

    .form-container {
        padding: 2.5rem 1.5rem;
    }
}