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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    color: #2a5934;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a24;
}

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

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

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

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

.main-header {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2a5934;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #e8f5e9;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    background-color: #fff3cd;
    padding: 5px 10px;
    border-radius: 3px;
    border: 1px solid #ffc107;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #4caf50;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #4caf50;
    color: white;
}

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

.btn-reject {
    background-color: #757575;
    color: white;
}

.btn-reject:hover {
    background-color: #616161;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #7cb342;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
}

.hero-text p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    background-color: #4caf50;
    color: white;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background-color: #2a5934;
    color: white;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-secondary:hover {
    background-color: #1a3a24;
    transform: translateY(-2px);
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2a5934;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.story-section {
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.dark-bg {
    background-color: #2c3e50;
    color: #ffffff;
}

.dark-bg h2,
.dark-bg h3 {
    color: #ffffff;
}

.dark-bg p {
    color: #ecf0f1;
}

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

.story-image {
    flex: 1;
    min-width: 300px;
    background-color: #7cb342;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2a5934;
}

.dark-bg .story-content h3 {
    color: #4caf50;
}

.story-content p {
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.7;
}

.skills-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.skills-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2a5934;
}

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

.skill-card {
    flex: 1 1 calc(25% - 30px);
    min-width: 200px;
    background-color: #f9f9f9;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.skill-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2a5934;
}

.skill-card p {
    font-size: 14px;
    color: #666;
}

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

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: #2a5934;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #a5d6a7;
}

.service-image-wrapper img {
    width: 100%;
    border-radius: 8px;
}

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2a5934;
}

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

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.duration {
    background-color: #e8f5e9;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    color: #2a5934;
}

.price {
    background-color: #fff3e0;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 700;
    color: #e65100;
    font-size: 18px;
}

.select-service-btn {
    background-color: #4caf50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #45a049;
}

.testimonials-section {
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #4caf50;
}

.booking-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.booking-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.booking-info {
    flex: 1;
    min-width: 300px;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2a5934;
}

.booking-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.booking-benefits {
    list-style: none;
    padding-left: 0;
}

.booking-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.booking-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

.booking-form-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.booking-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2a5934;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2a5934;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background-color: #4caf50;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

.trust-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.trust-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2a5934;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2a5934;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.final-cta {
    padding: 100px 20px;
    background-color: #e8f5e9;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2a5934;
}

.final-cta p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #4caf50;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #ecf0f1;
    font-size: 14px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
    padding: 20px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 6px;
}

.page-hero {
    background-color: #2a5934;
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
}

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

.story-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2a5934;
}

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

.story-visual {
    background-color: #a5d6a7;
}

.story-visual img {
    border-radius: 8px;
}

.mission-section {
    padding: 80px 20px;
}

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.mission-section p {
    font-size: 18px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2a5934;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    margin-bottom: 20px;
    background-color: #c8e6c9;
}

.member-photo img {
    width: 100%;
    border-radius: 50%;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2a5934;
}

.member-role {
    font-weight: 600;
    color: #4caf50;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2a5934;
}

.values-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1 1 calc(50% - 40px);
    min-width: 280px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2a5934;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-section {
    padding: 80px 20px;
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.approach-section p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.locations-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.locations-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #2a5934;
}

.locations-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

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

.location-image {
    flex: 1;
    min-width: 300px;
    background-color: #a5d6a7;
}

.location-image img {
    border-radius: 8px;
}

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

.service-detail-item {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 30px;
    flex-wrap: wrap;
}

.service-title-block h2 {
    font-size: 32px;
    margin-bottom: 8px;
    color: #2a5934;
}

.service-subtitle {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.service-price-block {
    text-align: right;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 5px;
}

.duration-label {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.service-image-full {
    margin-bottom: 30px;
    background-color: #a5d6a7;
}

.service-image-full img {
    width: 100%;
    border-radius: 8px;
}

.service-description h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2a5934;
}

.service-description h4 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #2a5934;
}

.service-description p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.course-topics {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.course-topics li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.course-topics li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.special-note {
    background-color: #fff3e0;
    padding: 15px;
    border-left: 4px solid #ff9800;
    margin: 20px 0;
    font-size: 15px;
}

.course-info-section {
    padding: 80px 20px;
}

.course-info-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

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

.info-block li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.info-block li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
    font-size: 20px;
}

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

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

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2a5934;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2a5934;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.hours-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
    background-color: #a5d6a7;
}

.contact-image-block img {
    width: 100%;
    border-radius: 8px;
}

.faq-section {
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #4caf50;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

.faq-item a {
    color: #4caf50;
    text-decoration: underline;
}

.directions-section {
    padding: 80px 20px;
    background-color: #fafafa;
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2a5934;
}

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

.directions-text h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2a5934;
}

.directions-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.directions-note {
    background-color: #e3f2fd;
    padding: 20px;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
}

.directions-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: bold;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2a5934;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.confirmation-details {
    margin: 50px 0;
}

.confirmation-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2a5934;
}

.next-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #4caf50;
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.selected-course-box {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
    margin: 30px 0;
}

.selected-course-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2a5934;
}

.course-name {
    font-size: 22px;
    font-weight: 700;
    color: #2a5934;
    margin-bottom: 10px;
}

.course-price {
    font-size: 18px;
    color: #e65100;
    font-weight: 600;
}

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

.btn-primary {
    background-color: #4caf50;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #45a049;
}

.btn-secondary {
    background-color: #2a5934;
    color: white;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a3a24;
}

.additional-info {
    padding: 60px 20px;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

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

.info-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.info-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.info-list a {
    color: #4caf50;
    text-decoration: underline;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2a5934;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2a5934;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2a5934;
}

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

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

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

.legal-page a {
    color: #4caf50;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 15px;
}

.cookie-table th {
    background-color: #2a5934;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table tr:hover {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-section {
        height: 500px;
    }

    .story-layout {
        flex-direction: column;
    }

    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .main-nav ul {
        gap: 15px;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .value-block {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

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

    .thanks-section h1 {
        font-size: 32px;
    }
}