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

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

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

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #34495e;
    transition: all 0.3s;
}

.hero-section {
    margin-top: -1px;
}

.hero-image {
    height: 620px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.85), rgba(52, 73, 94, 0.75));
    display: flex;
    align-items: center;
}

.hero-text {
    color: #ffffff;
    max-width: 680px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #e74c3c;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.intro-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #e74c3c;
}

.intro-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 90px 0;
    background-color: #ffffff;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-info {
    padding: 30px;
}

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

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

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

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #c0392b;
    transform: scale(1.02);
}

.about-preview {
    padding: 90px 0;
    background-color: #ecf0f1;
}

.about-content-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image-block {
    flex: 1;
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    background-color: #95a5a6;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 18px;
}

.link-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.link-button:hover {
    background-color: #c0392b;
    transform: translateX(5px);
}

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

.booking-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.booking-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.booking-card > p {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 40px;
    font-size: 16px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #34495e;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

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

.submit-button {
    padding: 16px 40px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #c0392b;
    transform: scale(1.02);
}

.submit-button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

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

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

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

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

.footer-column p {
    color: #bdc3c7;
    line-height: 1.8;
    font-size: 14px;
}

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #e74c3c;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 20px 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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #e74c3c;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #34495e;
}

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

.thanks-box {
    max-width: 600px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
    color: #ffffff;
}

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

.thanks-box p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-box .service-name {
    font-weight: 700;
    color: #e74c3c;
}

.legal-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

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

.contact-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #ecf0f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 18px;
}

@media (max-width: 992px) {
    .intro-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 18px);
    }

    .about-content-grid {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0 10px;
    }

    .main-nav.active {
        display: flex;
    }

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

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

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

    .booking-card {
        padding: 30px;
    }

    .legal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 15px;
    }

    .ad-notice {
        order: 3;
        width: 100%;
        text-align: center;
        font-size: 10px;
    }

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

    .services-preview h2 {
        font-size: 32px;
    }

    .booking-card {
        padding: 25px 20px;
    }
}