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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafaf8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5016;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #f4a261;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5016;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5016;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.hero-magazine {
    background-color: #f5f2ed;
    padding: 80px 40px;
}

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

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #2d5016;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text-column p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #1f3810;
}

.hero-image-column {
    flex: 1;
    background-color: #d4c4a8;
}

.hero-image-column img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.intro-block {
    padding: 60px 40px;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #444;
    text-align: center;
}

.featured-grid {
    padding: 80px 40px;
    background-color: #fafaf8;
}

.grid-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.grid-header h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.grid-header p {
    font-size: 1.1rem;
    color: #666;
}

.services-magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    background-color: #ffffff;
    display: flex;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-card-medium {
    flex: 1 1 calc(40% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.service-card-small {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.service-image {
    flex: 1;
    background-color: #d4c4a8;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-details {
    flex: 1;
    padding: 35px;
}

.service-details h3 {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.service-details p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 1.8rem;
    color: #2d5016;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    background-color: #f4a261;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.service-card-medium .service-image {
    height: 250px;
}

.service-card-medium .service-details {
    padding: 25px;
}

.service-card-small h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.service-card-small p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-image {
    flex: 1;
    background-color: #d4c4a8;
}

.philosophy-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 25px;
    line-height: 1.3;
}

.philosophy-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.text-link {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2d5016;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #1f3810;
}

.testimonial-inline {
    padding: 70px 40px;
    background-color: #2d5016;
}

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

.testimonial-content blockquote {
    font-size: 1.4rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 1rem;
    color: #d4c4a8;
    font-style: normal;
}

.form-section {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 15px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.booking-form {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f3810;
}

.why-choose {
    padding: 80px 40px;
    background-color: #ffffff;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
}

.centered-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
}

.benefit-item h4 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #1f3810;
    color: #d4c4a8;
    padding: 60px 40px 30px;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 50px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #d4c4a8;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #f4a261;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #d4c4a8;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #d4c4a8;
}

.page-hero-simple {
    background-color: #2d5016;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: #d4c4a8;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 25px;
    line-height: 1.3;
}

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

.story-image {
    flex: 0.8;
    background-color: #d4c4a8;
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

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

.values-container h2 {
    font-size: 2.5rem;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #2d5016;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.instructor-profile {
    padding: 80px 40px;
    background-color: #ffffff;
}

.profile-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.profile-image {
    flex: 1;
    background-color: #d4c4a8;
}

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

.profile-content {
    flex: 1;
}

.profile-content h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 25px;
}

.profile-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.methodology-section {
    padding: 80px 40px;
    background-color: #f5f2ed;
}

.methodology-content {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-content h2 {
    font-size: 2.5rem;
    color: #2d5016;
    text-align: center;
    margin-bottom: 50px;
}

.methodology-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.method-block {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.method-block h4 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 12px;
}

.method-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-about {
    padding: 80px 40px;
    background-color: #2d5016;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 1.15rem;
    color: #d4c4a8;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background-color: #f4a261;
    color: #ffffff;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: #e76f51;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.service-full-card {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fafaf8;
    padding: 40px;
}

.service-full-card.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: #d4c4a8;
}

.service-image-large img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.service-price {
    font-size: 2rem;
    color: #2d5016;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

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

.compact-service-card {
    flex: 1;
    background-color: #fafaf8;
    padding: 35px;
}

.compact-service-card h3 {
    font-size: 1.6rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.service-features-compact {
    list-style: none;
    margin-bottom: 25px;
}

.service-features-compact li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.service-features-compact li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.booking-cta-section {
    padding: 60px 40px;
    background-color: #f5f2ed;
    text-align: center;
}

.booking-cta-content h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.booking-cta-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5016;
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid #2d5016;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 1.3rem;
    color: #2d5016;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.info-item .note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

.contact-additional {
    flex: 1;
}

.contact-additional h2 {
    font-size: 2.2rem;
    color: #2d5016;
    margin-bottom: 20px;
}

.contact-additional > p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.faq-quick h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #2d5016;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.services-reminder {
    margin-top: 40px;
    padding: 25px;
    background-color: #f5f2ed;
    border-left: 4px solid #2d5016;
}

.services-reminder p {
    font-size: 1rem;
    color: #555;
}

.services-reminder a {
    color: #2d5016;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #2d5016;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #fafaf8;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 30px;
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.next-steps {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: #2d5016;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary-alt {
    display: inline-block;
    background-color: #2d5016;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary-alt:hover {
    background-color: #1f3810;
}

.btn-secondary-alt {
    display: inline-block;
    background-color: transparent;
    color: #2d5016;
    padding: 15px 35px;
    text-decoration: none;
    border: 2px solid #2d5016;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-alt:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.updated-date {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-container h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #2d5016;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #2d5016;
}

.legal-container a:hover {
    color: #1f3810;
}

@media (max-width: 768px) {
    .hero-content-split,
    .split-layout,
    .story-layout,
    .profile-layout,
    .services-magazine-layout,
    .service-full-card,
    .service-grid-compact,
    .contact-layout,
    .footer-columns {
        flex-direction: column;
    }

    .hero-text-column h1 {
        font-size: 2rem;
    }

    .grid-header h2,
    .centered-content h2,
    .values-container h2,
    .methodology-content h2 {
        font-size: 2rem;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .benefits-columns,
    .values-grid,
    .methodology-blocks {
        flex-direction: column;
    }

    .benefit-item,
    .value-card,
    .method-block {
        flex: 1 1 100%;
    }

    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .header-container {
        padding: 0 20px;
    }

    .hero-magazine,
    .featured-grid,
    .philosophy-section,
    .form-section,
    .why-choose {
        padding: 40px 20px;
    }
}