* {
    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;
}

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px 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: #2c5f2d;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.hero-magazine {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4e4d5;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 40px;
}

.hero-text {
    max-width: 800px;
}

.hero-text h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #e0e0e0;
}

.intro-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.magazine-layout {
    display: flex;
    gap: 50px;
}

.main-column {
    flex: 2;
}

.sidebar-column {
    flex: 1;
}

.main-column h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.main-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cta-inline {
    margin-top: 30px;
}

.link-arrow {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow::after {
    content: " →";
}

.link-arrow:hover {
    transform: translateX(5px);
}

.info-card {
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #2c5f2d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.info-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.features-grid {
    padding: 80px 0;
}

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

.feature-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.feature-card h3 {
    font-size: 22px;
    margin: 20px 25px 10px;
    color: #2c3e50;
}

.feature-card p {
    margin: 0 25px 25px;
    color: #666;
    font-size: 16px;
}

.services-preview {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-magazine {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-large {
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.btn-service {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #234d24;
    transform: scale(1.02);
}

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

.service-small {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.service-small h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-small p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-small .price-tag {
    font-size: 26px;
    margin-bottom: 20px;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.testimonials-flex {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: #f9f9f9;
    padding: 35px;
    border-left: 4px solid #2c5f2d;
    border-radius: 5px;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #2c5f2d;
}

.form-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.form-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

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

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

.btn-submit {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #234d24;
    transform: scale(1.01);
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff8e1;
}

.disclaimer {
    background-color: #ffffff;
    padding: 40px;
    border-left: 5px solid #f57c00;
    border-radius: 5px;
}

.disclaimer h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e65100;
}

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

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    color: #b0b0b0;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d5265;
}

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234d24;
    transform: scale(1.05);
}

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

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: scale(1.05);
}

.legal-page {
    padding: 60px 0;
}

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

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

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

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

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

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

.last-updated {
    margin-top: 50px;
    font-style: italic;
    color: #888;
}

.contact-page {
    padding: 60px 0;
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c5f2d;
}

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

.info-block .non-clickable-email {
    color: #2c5f2d;
    font-weight: 600;
}

.services-page {
    padding: 60px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-page {
    padding: 60px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1.5;
}

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

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

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

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

.values-section {
    background-color: #fafafa;
    padding: 60px 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

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

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

.value-item {
    flex: 1;
}

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c5f2d;
}

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

.thanks-service {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 17px;
    color: #2c3e50;
}

.btn-home {
    display: inline-block;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-home:hover {
    background-color: #234d24;
    transform: scale(1.05);
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

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

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

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

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

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

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.btn-cookie-accept {
    background-color: #2c5f2d;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    background-color: #234d24;
    transform: scale(1.05);
}

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.editorial-main {
    background-color: #ffffff;
}

.editorial-article {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-editorial.smaller {
    height: 500px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4e4d5;
}

.hero-editorial.smaller .hero-image-wrapper {
    height: 500px;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 40px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    max-width: 900px;
}

.article-content {
    max-width: 100%;
}

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

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

.lead-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 25px;
}

.image-break {
    margin: 60px auto;
    max-width: 900px;
    padding: 0 20px;
}

.image-break img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    background-color: #e8f5e9;
}

.image-break figcaption {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.highlight-section {
    background-color: #f9f9f9;
}

.inline-cta {
    margin: 30px 0;
}

.btn-text-link {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn-text-link::after {
    content: " →";
}

.btn-text-link:hover {
    transform: translateX(5px);
}

.featured-parks {
    padding: 80px 0;
    background-color: #fafafa;
}

.featured-parks h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.park-card {
    margin-bottom: 50px;
}

.park-card-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.park-card.reverse .park-card-content {
    flex-direction: row-reverse;
}

.park-text {
    flex: 1;
}

.park-text h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.park-image {
    flex: 1;
    background-color: #d4e4d5;
}

.park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

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

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

.service-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.service-item ul {
    list-style: none;
    margin: 20px 0;
}

.service-item ul li {
    padding: 6px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

.service-item ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 20px 0;
    display: block;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 30px 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    margin: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2c3e50;
}

.selected-service-display span {
    font-weight: 700;
    color: #2c5f2d;
}

.contact-form {
    width: 100%;
}

.testimonial-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.testimonial blockquote {
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #2c5f2d;
    border-radius: 5px;
    margin-bottom: 30px;
}

.testimonial cite {
    font-size: 15px;
    font-weight: 600;
    color: #2c5f2d;
    font-style: normal;
}

.cta-section {
    padding: 80px 0;
    background-color: #2c5f2d;
}

.cta-box {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    margin-bottom: 60px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.service-detail-text {
    flex: 1.2;
    padding: 50px;
}

.service-detail-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-detail-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.service-detail-text ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail-text ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-text ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.service-description {
    font-size: 18px !important;
    font-weight: 500;
}

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

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

.btn-service-large {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-service-large:hover {
    background-color: #234d24;
    transform: scale(1.02);
}

.contact-map {
    flex: 1;
    background-color: #e0e0e0;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.about-mission {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 60px;
}

.about-mission h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-mission p {
    font-size: 20px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

@media (max-width: 968px) {
    .magazine-layout,
    .service-large,
    .contact-content,
    .about-content,
    .park-card-content,
    .service-detail-content,
    .footer-content {
        flex-direction: column;
    }

    .park-card.reverse .park-card-content {
        flex-direction: column;
    }

    .service-detail-card.reverse .service-detail-content {
        flex-direction: column;
    }

    .grid-three,
    .services-small-grid,
    .testimonials-flex,
    .footer-grid,
    .values-grid,
    .services-grid {
        flex-direction: column;
    }

    .hero-text h1,
    .hero-text-overlay h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .service-detail-text {
        padding: 30px;
    }

    .modal-content {
        padding: 30px;
    }

    .cta-box h2 {
        font-size: 30px;
    }
}