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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-cookie,
.btn-cookie-outline {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #3498db;
    color: #ffffff;
}

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

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

.btn-cookie-outline:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

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

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

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

.ad-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: #f8f9fa;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #555;
    max-width: 540px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.hero-right {
    flex: 1;
    background: #ddd;
}

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

.intro-offset {
    padding: 100px 0;
    background: #ffffff;
}

.offset-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.offset-image {
    flex: 0 0 400px;
    background: #f0f0f0;
}

.offset-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.offset-content {
    flex: 1;
}

.offset-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.offset-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
}

.services-grid {
    padding: 100px 0;
    background: #fafbfc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    display: flex;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

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

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

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

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

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #555;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background: #2c3e50;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1a252f;
}

.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.form-left-content p {
    font-size: 1.05rem;
    margin-bottom: 32px;
    color: #555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 3px solid #3498db;
    font-size: 0.95rem;
}

.form-right {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

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

.philosophy {
    padding: 100px 0;
    background: #2c3e50;
}

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

.philosophy-content img {
    flex: 0 0 480px;
    width: 480px;
    height: 320px;
    object-fit: cover;
}

.philosophy-text {
    flex: 1;
    color: #ffffff;
}

.philosophy-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #3498db;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.thanks-page {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 32px;
}

.content-page {
    padding: 80px 0;
    min-height: 60vh;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

.content-page ul {
    margin: 20px 0 20px 30px;
}

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

.contact-info {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-col {
    flex: 1;
}

.contact-col h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-col p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #555;
}

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

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-right {
        min-height: 400px;
    }

    .offset-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .offset-image {
        flex: none;
        width: 100%;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-image {
        flex: none;
        height: 300px;
    }

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

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

    .philosophy-content img {
        flex: none;
        width: 100%;
    }

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

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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