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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: white;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

.lang-btn {
    padding: 8px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #2c5f8d;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(135deg, #4a7ba7 0%, #2c5f8d 100%);
    color: white;
}

.lang-btn:hover:not(.active) {
    background: #e8f1f8;
}

/* Header */
header {
    background: linear-gradient(135deg, #4a7ba7 0%, #2c5f8d 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 60px 20px;
}

section:nth-child(even) {
    background-color: white;
}

section h2 {
    color: #2c5f8d;
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 400;
}

/* Mission Section */
.mission {
    background: white;
    position: relative;
    background-image: url('assets/colorfull.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mission h2 {
    color: white;
}

.mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

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

.mission p {
    font-size: 1.3em;
    text-align: center;
    color: #eee8e8;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Values Section */
.values {
    background: linear-gradient(to bottom, #e8f1f8 0%, #f8f9fa 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(44, 95, 141, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(44, 95, 141, 0.2);
}

.value-card h3 {
    color: #2c5f8d;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

.profile-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(44, 95, 141, 0.2);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05em;
    line-height: 1.8;
}

/* Approach Section */
.approach {
    background: linear-gradient(135deg, #4a7ba7 0%, #2c5f8d 100%);
    color: white;
}

.approach h2 {
    color: white;
}

.approach p {
    font-size: 1.2em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Reasons Section */
.reasons {
    background: white;
}

.reasons-grid ul {
    max-width: 900px;
    margin: 40px auto;
    columns: 2;
    column-gap: 40px;
}

.reasons-grid li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
    break-inside: avoid;
}

.reasons-grid li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a7ba7;
    font-weight: bold;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #e8f1f8 0%, #f8f9fa 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(44, 95, 141, 0.15);
    text-align: center;
}

.service-card h3 {
    color: #2c5f8d;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.service-card .duration {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 10px;
}

.service-card .price {
    font-size: 2em;
    color: #4a7ba7;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-card .receipt {
    font-style: italic;
    color: #777;
    font-size: 0.95em;
}

.service-card .note {
    margin-top: 20px;
    color: #666;
    font-size: 0.95em;
}

/* Policy Section */
.policy {
    background: white;
}

.policy-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.policy-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #4a7ba7;
}

.policy-card h3 {
    color: #2c5f8d;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    padding: 15px;
    margin-bottom: 10px;
    background: white;
    border-radius: 5px;
    color: #555;
}

/* Booking Section */
.booking {
    background: linear-gradient(to bottom, #e8f1f8 0%, #f8f9fa 100%);
}

.booking-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.booking-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(44, 95, 141, 0.15);
}

.booking-card h3 {
    color: #2c5f8d;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.booking-card p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: #555;
}

.booking-card strong {
    color: #2c5f8d;
}

.online-booking {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #e8f1f8;
    text-align: center;
}

.online-booking a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #4a7ba7 0%, #2c5f8d 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 95, 141, 0.3);
}

.online-booking a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 141, 0.4);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #e8f1f8 0%, #f8f9fa 100%);
}

.contact-info {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(44, 95, 141, 0.15);
    text-align: center;
}

.contact-info p {
    font-size: 1.15em;
    color: #555;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #2c5f8d;
}

.contact-info a {
    color: #2c5f8d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4a7ba7;
    text-decoration: underline;
}

/* References Section */
.references {
    background: white;
}

.references-list {
    max-width: 800px;
    margin: 40px auto;
    list-style: none;
}

.references-list li {
    margin-bottom: 15px;
}

.references-list a {
    display: inline-block;
    padding: 15px 20px;
    background: #e8f1f8;
    color: #2c5f8d;
    text-decoration: none;
    border-radius: 8px;
    border-left: 4px solid #4a7ba7;
    transition: all 0.3s ease;
    width: 100%;
}

.references-list a:hover {
    background: #d4e6f5;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(44, 95, 141, 0.2);
}

/* Member Card Link */
.member-card {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #e8f1f8;
}

.member-card a {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #4a7ba7 0%, #2c5f8d 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(44, 95, 141, 0.3);
}

.member-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 141, 0.4);
}

/* Footer */
footer {
    background: #2c5f8d;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    font-size: 0.95em;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    section h2 {
        font-size: 1.8em;
    }

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

    .profile-img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .reasons-grid ul {
        columns: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
