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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

.hero-text-col h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-intro {
    font-size: 20px;
    line-height: 1.6;
    color: #555;
}

.hero-image-col {
    flex: 1;
    background-color: #ffe0d6;
}

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

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

.magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.content-primary {
    flex: 2;
}

.content-primary h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.content-primary p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.sidebar-info {
    flex: 1;
}

.info-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-left: 4px solid #e74c3c;
}

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

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

.info-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 16px;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.parks-ranking {
    padding: 100px 40px;
    background-color: #fafafa;
}

.parks-ranking h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.park-entry {
    max-width: 1400px;
    margin: 0 auto 60px;
    display: flex;
    gap: 40px;
    background-color: #ffffff;
    overflow: hidden;
}

.park-entry.featured {
    flex-direction: column;
}

.park-entry.reverse {
    flex-direction: row-reverse;
}

.park-image {
    width: 100%;
    background-color: #e9ecef;
}

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

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

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

.park-details {
    padding: 50px;
}

.park-details-inline {
    flex: 1;
    padding: 40px;
}

.rank-badge {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.rank-badge.small {
    padding: 6px 15px;
    font-size: 12px;
}

.park-details h3,
.park-details-inline h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.park-details p,
.park-details-inline p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.park-highlights {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.park-highlights span {
    background-color: #f8f9fa;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 14px;
    color: #2c3e50;
}

.park-grid-small {
    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    gap: 40px;
}

.park-card {
    flex: 1;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.park-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background-color: #e9ecef;
}

.park-card h4 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.park-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding: 0 25px 25px;
}

.expert-tips {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.tips-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tips-container h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.tips-columns {
    display: flex;
    gap: 50px;
}

.tip-block {
    flex: 1;
}

.tip-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.tip-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #ecf0f1;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 70px;
}

.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.service-item {
    flex: 1;
    background-color: #f8f9fa;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #dee2e6;
}

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

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    padding: 0 25px;
    margin-bottom: 20px;
}

.cta-button {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.link-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.link-cta:hover {
    background-color: #1a252f;
}

.booking-form-section {
    padding: 100px 40px;
    background-color: #fafafa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    padding: 18px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

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

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

.cookie-content {
    max-width: 1400px;
    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;
}

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

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

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

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

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

.content-wrapper h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #2c3e50;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 35px;
    color: #2c3e50;
}

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

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-wrapper ul li,
.content-wrapper ol li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #f8f9fa;
    padding: 40px;
}

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

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
}

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

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.thanks-message {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
}

.thanks-message h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 30px;
}

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

.thanks-message a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-message a:hover {
    background-color: #c0392b;
}

@media (max-width: 768px) {
    .hero-content-split,
    .magazine-grid,
    .park-entry,
    .park-entry.reverse,
    .park-grid-small,
    .tips-columns,
    .services-showcase,
    .footer-content,
    .services-grid {
        flex-direction: column;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .hero-intro {
        font-size: 17px;
    }
}
