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

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

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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-section {
    display: flex;
    align-items: stretch;
    min-height: 85vh;
    background-color: #f8f5f0;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #e8e1d8;
}

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

.cta-button {
    display: inline-block;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #704f30;
}

.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.intro-text {
    max-width: 850px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 20px;
    background-color: #f8f5f0;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 240px;
    overflow: hidden;
    background-color: #e8e1d8;
}

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    list-style: none;
    margin-bottom: 20px;
}

.service-details li {
    font-size: 14px;
    color: #6c757d;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

.select-service {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #704f30;
}

.form-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f5f0;
    padding: 50px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0ddd8;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f0ede8;
    cursor: not-allowed;
}

.submit-button {
    width: 100%;
    background-color: #8b6f47;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #704f30;
}

.testimonials-section {
    padding: 100px 20px;
    background-color: #f8f5f0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #8b6f47;
    font-weight: 600;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    color: #b0bec5;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #90a4ae;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #90a4ae;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #704f30;
}

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    padding: 80px 20px 50px;
    background-color: #f8f5f0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
    margin-top: 15px;
}

.about-content {
    padding: 100px 20px;
    background-color: #ffffff;
}

.about-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e8e1d8;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    padding: 100px 20px;
    background-color: #f8f5f0;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.team-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.team-section h2 {
    text-align: center;
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.team-image {
    flex: 1;
    background-color: #e8e1d8;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.team-text {
    flex: 1.2;
}

.team-text p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services-full {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.contact-section {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1.2;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.email-text {
    color: #5a6c7d;
    font-weight: 500;
}

.note {
    font-size: 14px;
    color: #8b6f47;
    font-style: italic;
    margin-top: 10px;
}

.contact-image {
    flex: 1;
    background-color: #e8e1d8;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f5f0;
    min-height: 60vh;
}

.thanks-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.selected-course {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 18px;
    color: #8b6f47;
    font-weight: 600;
}

.legal-content {
    padding: 60px 20px 100px;
    background-color: #ffffff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-text h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-text p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-text ul li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #8b6f47;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 50px 30px;
    }

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

    .hero-image {
        height: 300px;
    }

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

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

    .service-card {
        width: 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .about-layout,
    .team-content,
    .contact-layout {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 35px 25px;
    }
}