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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-nav a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

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

.text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.image-block {
    flex: 1;
    background-color: #e8ebed;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 250px;
    background-color: #e8ebed;
}

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

.service-details {
    padding: 30px;
}

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

.service-details p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 20px 0;
}

.btn-select {
    width: 100%;
    padding: 12px 25px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.split-booking {
    display: flex;
    gap: 60px;
}

.booking-info {
    flex: 1;
}

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

.booking-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.booking-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 20px;
    color: #27ae60;
    font-weight: 700;
}

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

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

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

.form-group input,
.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 textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

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

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

.why-choose {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.why-choose .text-block h2 {
    color: #ffffff;
}

.why-choose .text-block p {
    color: #ecf0f1;
}

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

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

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

.footer-section p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

.experience-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

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

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

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

.value-item p {
    font-size: 16px;
    color: #555;
}

.process-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-section {
    padding: 80px 0;
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-item {
    margin-bottom: 80px;
}

.service-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

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

.service-info {
    flex: 1;
}

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

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 0 25px;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.service-includes {
    list-style: none;
    margin: 25px 0;
}

.service-includes li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.contact-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1.5;
}

.contact-image {
    flex: 1;
    background-color: #e8ebed;
}

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

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.note {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

.location-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.location-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    max-width: 900px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 600px;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

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

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

.thanks-details {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.thanks-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.timeline-text p {
    font-size: 15px;
    color: #555;
}

.thanks-service-info {
    margin: 30px 0;
}

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

.service-name {
    font-size: 24px;
    font-weight: 600;
    color: #3498db;
}

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

.thanks-note {
    margin-top: 30px;
}

.thanks-note p {
    font-size: 14px;
    color: #7f8c8d;
}

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

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

.legal-text ul {
    margin: 20px 0 20px 30px;
}

.legal-text ul li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.8;
}

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

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

.additional-info p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

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

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

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

    .split-content,
    .split-content.reverse,
    .split-booking,
    .service-split,
    .service-split.reverse,
    .contact-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .footer-content {
        flex-direction: column;
    }

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