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

html {
    font-size: 1rem;
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    color:#2F2F2F;
}

h2 {
    font-size: 2.2rem;
    color:#2F2F2F;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: #34495e;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Buttons */
.btn-primary {
    display: inline-block;
  background: #5F9EA0;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #6b5642;
    transform: translateY(-0.2rem);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:#2F2F2F;
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-notice.show {
    display: block;
    animation: slideUp 0.3s ease;
}

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

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 25rem;
}

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

.btn-accept {
    background-color: #27ae60;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: background-color 0.3s ease;
}

.btn-accept:hover {
    background-color: #219a52;
}

.btn-decline {
    background-color: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border: 0.1rem solid white;
    border-radius: 0.3rem;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.btn-decline:hover {
    background-color: white;
    color:#2F2F2F;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header */
.header {

    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    background: #2F2F2F;
}

.nav {
    padding: 1.5rem 0;
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    color:#2F2F2F;
    margin-bottom: 0;
}

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

.nav-menu a {

    transition: color 0.3s ease;
    color: #F5F5DC;
font-family: "Playfair Display";
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 80%; /* 12.8px */
letter-spacing: 0.48px;
}

.nav-menu a:hover {
    color: #8b7355;
}

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

.nav-toggle span {
    width: 2.5rem;
    height: 0.3rem;
    background-color: #efeded;
    margin: 0.3rem 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background:  #F5F5DC;
    padding: 8rem 0;
    text-align: center;
}

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

.hero h2 {
    font-size: 3.5rem;
    color:#2F2F2F;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h3 {
    font-size: 1.8rem;
    color: #8b7355;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    margin-top: 2rem;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background-color:#2F2F2F;
    color: white;
}

.services h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-intro {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #bdc3c7;
}

.services-desc {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem auto;
    color: #ecf0f1;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);

    color: #333;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #5F9EA0;
background: #F5F5DC;
}

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

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem auto;
    /*background-color: #8b7355;*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 3rem;
    height: 3rem;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    color: #8b7355;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

/* Progress Section */
.progress {
    padding: 8rem 0;
    background-color: white;
}

.progress h2 {
    margin-bottom: 3rem;
}

.progress > .container > p {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem auto;
    font-size: 1.2rem;
}

.progress-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.progress-item {
    flex: 1 1 calc(50% - 1.5rem);
    border: 1px solid #2F2F2F;
background: #F5F5DC;
    padding: 25px;
}

.progress-item h3 {
    color: #8b7355;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.progress-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* System Section */
.system {
    padding: 8rem 0;
    background-color: #F5F5DC;
}

.system-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.system-text {
    flex: 1;
}

.system-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.system-text h3 {
    color: #8b7355;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.system-text h3:first-of-type {
    margin-top: 0;
}

.system-image {
    flex: 1;
}

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

/* Training Section */
.training {
    padding: 8rem 0;
background: #F5F5DC;
}

.training h2 {
    margin-bottom: 2rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.training > .container > p {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem auto;
    font-size: 1.2rem;
}

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

.training-item {
    flex: 1 1 calc(50% - 1rem);
    background-color: #F5F5DC;
    padding: 2.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.training-item:hover {
    transform: translateY(-0.3rem);
}

.training-item h3 {
    color: #8b7355;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.training-item p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.team-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.team-image {
    flex: 1;
}

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

.team-text {
    flex: 1;
}

.team-text h3 {
    color: #8b7355;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.team-text h3:first-of-type {
    margin-top: 0;
}

.team-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.contact h2 {
    color: white;
    margin-bottom: 4rem;
}

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

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

.contact-item h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #bdc3c7;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    background-color: #2F2F2F!important;
    /*padding: 3rem;*/
    border-radius: 1rem;
    color: #333;
}

.contact-form h3 {
    color:#2F2F2F;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color:#2F2F2F;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

/* Success Page */
.success {
    padding: 10rem 0;
    text-align: center;
    background:  #F5F5DC;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.success h2 {
    color: #27ae60;
    margin-bottom: 2rem;
}

.success p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.success .btn-primary {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0;
}

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

.footer-links a {
    color: #bdc3c7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 0.1rem solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background-color: #383737;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.3s ease;
        box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    /* Hero */
    .hero {
        padding: 6rem 0;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero h3 {
        font-size: 1.4rem;
    }

    /* Services */
    .services {
        padding: 6rem 0;
    }

    .service-card {
        flex: 1 1 100%;
        padding: 2rem;
    }

    /* Progress */
    .progress {
        padding: 6rem 0;
    }

    .progress-item {
        flex: 1 1 100%;
    }

    /* System */
    .system {
        padding: 6rem 0;
    }

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

    /* Training */
    .training {
        padding: 6rem 0;
    }

    .training-item {
        flex: 1 1 100%;
        padding: 2rem;
    }

    /* Team */
    .team {
        padding: 6rem 0;
    }

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

    /* Contact */
    .contact {
        padding: 6rem 0;
    }

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

    .contact-form {
        padding: 2rem;
    }

    /* Cookie Notice */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: auto;
        margin-bottom: 1rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .container {
        padding: 0 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .services,
    .progress,
    .system,
    .training,
    .team,
    .contact {
        padding: 4rem 0;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero .btn-primary {
        padding: 1.2rem 2.5rem;
    }
}

/* Learning Section */
.learning {
    padding: 8rem 0;
    background-color: #F5F5DC;
}

.learning h2 {
    color: #2F2F2F;
    margin-bottom: 3rem;
    text-align: center;
}

.learning-intro {
    max-width: 80rem;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.learning-intro p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.learning-content h3 {
    color: #2F2F2F;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.learning-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.learning-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.learning-point {
    flex: 1 1 calc(50% - 1rem);
    background-color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learning-point:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
}

.learning-point h4 {
    color: #8b7355;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.learning-point p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Learning Path Section */
.learning-path {
    padding: 8rem 0;
    background-color: #2F2F2F;
    color: white;
}

.learning-path h2 {
    color: white;
    margin-bottom: 3rem;
}

.learning-path p {
    color: #bdc3c7;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: none;
}

/* Formats Section */
.formats {
    padding: 8rem 0;
    background-color: white;
}

.formats h2 {
    color: #2F2F2F;
    margin-bottom: 4rem;
}

.formats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.format-card {
    flex: 1 1 calc(33.333% - 2rem);
    background-color: #F5F5DC;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.format-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.1);
}

.format-icon {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

.format-icon img {
    width: 4rem;
    height: 4rem;
    filter: brightness(0) invert(1);
}

.format-card h3 {
    color: #8b7355;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.format-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Method Support Section */
.method-support {
    padding: 8rem 0;
    background-color: #F5F5DC;
}

.method-support h2 {
    color: #2F2F2F;
    margin-bottom: 3rem;
}

.method-support > .container > p {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 4rem auto;
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.team-profiles {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.profile {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    background-color: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
}

.profile:nth-child(even) {
    flex-direction: row-reverse;
}

.profile-image {
    flex-shrink: 0;
    width: 20rem;
    height: 25rem;
    border-radius: 1rem;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-content {
    flex: 1;
}

.profile-content h3 {
    color: #8b7355;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.profile-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive Design for Learning Sections */
@media (max-width: 768px) {
    .learning,
    .learning-path,
    .formats,
    .method-support {
        padding: 6rem 0;
    }

    .learning-points {
        flex-direction: column;
    }

    .learning-point {
        flex: 1 1 100%;
        padding: 2rem;
    }

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

    .format-card {
        flex: 1 1 100%;
        padding: 2.5rem 2rem;
    }

    .profile {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }

    .profile-image {
        width: 100%;
        max-width: 25rem;
        height: 20rem;
        margin: 0 auto;
    }

    .format-icon {
        width: 7rem;
        height: 7rem;
    }

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

@media (max-width: 480px) {
    .learning,
    .learning-path,
    .formats,
    .method-support {
        padding: 4rem 0;
    }

    .learning-point,
    .format-card,
    .profile {
        padding: 2rem;
    }

    .format-icon {
        width: 6rem;
        height: 6rem;
    }

    .format-icon img {
        width: 3rem;
        height: 3rem;
    }

    .profile-image {
        height: 18rem;
    }

    .learning h2,
    .learning-path h2,
    .formats h2,
    .method-support h2 {
        font-size: 2rem;
    }

    .learning-content h3 {
        font-size: 1.6rem;
    }

    .format-card h3 {
        font-size: 1.3rem;
    }

    .profile-content h3 {
        font-size: 1.5rem;
    }
}


/* Perspectives Section */
.perspectives {
    padding: 8rem 0;
    background-color: #F5F5DC;
    text-align: center;
}

.perspectives h2 {
    color: #2F2F2F;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.perspectives-intro {
    max-width: 80rem;
    margin: 0 auto;
}

.perspectives-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.collaboration-ways h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.collaboration-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #bdc3c7;
    margin-bottom: 4rem;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.collaboration-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.collaboration-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.collaboration-item:hover {
    transform: translateY(-0.3rem);
}

.collaboration-item.left-column {
    background-color: #8b7355;
    color: white;
}

.collaboration-item.right-column {
    background-color: #34495e;
    color: white;
}

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

.collaboration-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ecf0f1;
    margin-bottom: 0;
}

/* Collaboration Attitude Section */
.collaboration-attitude {
    padding: 8rem 0;
    background-color: white;
}

.attitude-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.attitude-text {
    flex: 1;
}

.attitude-text h2 {
    color: #2F2F2F;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

.attitude-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.attitude-image {
    flex: 1;
}

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

/* Bottom Collaboration Section */
.bottom-collaboration {
    padding: 8rem 0;
    background-color: #F5F5DC;
}

.bottom-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.bottom-image {
    flex: 1;
}

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

.bottom-text {
    flex: 1;
}

.bottom-text h2 {
    color: #2F2F2F;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}

.bottom-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Responsive Design for Perspectives Sections */
@media (max-width: 768px) {
    .perspectives,
    .collaboration-ways,
    .collaboration-attitude,
    .bottom-collaboration {
        padding: 6rem 0;
    }

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

    .collaboration-item {
        flex: 1 1 100%;
        padding: 2rem;
    }

    .attitude-content,
    .bottom-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .attitude-text h2,
    .bottom-text h2 {
        text-align: center;
        font-size: 2rem;
    }

    .perspectives h2 {
        font-size: 2rem;
    }

    .collaboration-ways h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .perspectives,
    .collaboration-ways,
    .collaboration-attitude,
    .bottom-collaboration {
        padding: 4rem 0;
    }

    .collaboration-item {
        padding: 2rem 1.5rem;
    }

    .perspectives h2,
    .collaboration-ways h2,
    .attitude-text h2,
    .bottom-text h2 {
        font-size: 1.8rem;
    }

    .collaboration-item h3 {
        font-size: 1.3rem;
    }

    .perspectives-intro p,
    .collaboration-intro,
    .attitude-text p,
    .bottom-text p {
        font-size: 1rem;
    }

    .collaboration-item p {
        font-size: 1rem;
    }
}
/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: #2F2F2F;
    color: white;
}

.contact h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 4rem;
    text-align: left;
    font-weight: 600;
}

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

.contact-info {
    flex: 1;
    max-width: 40rem;
}

.contact-intro {
    color: #bdc3c7;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-locations {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-item h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-item p {
    color: #bdc3c7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    max-width: 45rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    border: 0.1rem solid #9E9E9E;
    border-radius: 0.3rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    background-color: transparent;
    color: white;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #7f8c8d;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b7355;
    background-color: rgba(255, 255, 255, 0.05);
}

.contact-form textarea {
    resize: vertical;
    min-height: 12rem;
}

.btn-submit {
    background-color: #8b7355;
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 0.3rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #6b5642;
    transform: translateY(-0.2rem);
}

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

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact {
        padding: 6rem 0;
    }

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

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

    .contact-info {
        max-width: none;
    }

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

    .contact-form {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 4rem 0;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
    }

    .btn-submit {
        width: 100%;
        padding: 1.2rem;
    }
}