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

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

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

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

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

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

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

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

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo a {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    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: #e74c3c;
}

.ad-disclosure {
    background-color: #fff3cd;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
}

.hero-magazine {
    background-color: #ffffff;
}

.hero-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.hero-text-column {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

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

.hero-image-column {
    flex: 1;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.intro-magazine {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.sidebar-column {
    flex: 0 0 280px;
}

.main-content-column {
    flex: 1;
}

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

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

.info-card {
    background-color: #fff9e6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

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

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
}

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

.services-magazine {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.section-header-magazine {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header-magazine h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.services-grid-magazine {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-large {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.service-card-large:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card-large:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 45%;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

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

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

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

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

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 20px;
}

.service-price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

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

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin-bottom: 5px;
    color: #2c3e50;
}

.booking-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-magazine {
    padding: 80px 30px;
    background-color: #2c3e50;
    color: white;
}

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

.testimonials-header h2 {
    font-size: 38px;
    color: white;
}

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

.testimonial-card {
    flex: 1;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

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

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

.approach-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.final-cta-section {
    padding: 100px 30px;
    background-color: #e74c3c;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: white;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

.main-footer {
    background-color: #1a252f;
    color: #b0b0b0;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

.footer-column a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .magazine-container {
        flex-direction: column;
    }

    .sidebar-column {
        flex: 1;
    }

    .service-card-large,
    .service-card-large:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }

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

    .footer-container {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 0 0 48%;
    }
}

.page-hero-small {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 80px 30px;
    text-align: center;
    color: white;
}

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

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

.about-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.team-values {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    flex: 1;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e74c3c;
}

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

.about-cta {
    padding: 80px 30px;
    background-color: #3498db;
    text-align: center;
}

.about-cta h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 30px;
}

.services-page {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

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

.services-intro-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.services-list-detailed {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-detail-content {
    padding: 40px;
}

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

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

.service-detail-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    flex: 0 0 calc(50% - 10px);
    font-size: 15px;
    color: #555;
}

.info-item strong {
    color: #2c3e50;
}

.contact-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-side > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

.contact-note {
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #f39c12;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #856404;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.75);
    padding: 20px;
    color: white;
}

.map-overlay p {
    font-size: 15px;
    margin: 0;
}

.contact-extra-info {
    margin-top: 30px;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.transport-list {
    list-style: none;
}

.transport-list li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

.contact-faq {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

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

.faq-container h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item {
    flex: 0 0 calc(50% - 15px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.thanks-page {
    padding: 100px 30px;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

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

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #27ae60;
    margin: 25px 0;
}

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

.btn-primary-thanks,
.btn-secondary-thanks {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary-thanks {
    background-color: #e74c3c;
    color: white;
}

.btn-primary-thanks:hover {
    background-color: #c0392b;
}

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

.btn-secondary-thanks:hover {
    background-color: #3498db;
    color: white;
}

.thanks-extra-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.thanks-extra-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-extra-info p {
    font-size: 16px;
    color: #555;
}

.contact-email {
    font-weight: 600;
    color: #3498db;
    font-size: 18px;
}

.legal-page {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

.legal-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #666;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container p,
.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

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

@media (max-width: 1024px) {
    .team-values {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 0 100%;
    }

    .info-item {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text-column {
        padding: 40px 30px;
    }

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

    .section-header-magazine h2 {
        font-size: 32px;
    }

    .booking-form {
        padding: 25px;
    }

    .footer-column {
        flex: 0 0 100%;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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

    .thanks-container {
        padding: 40px 25px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary-thanks,
    .btn-secondary-thanks {
        width: 100%;
    }
}