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

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

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

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

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

.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: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a252f;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

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

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

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

.intro-section {
    padding: 90px 30px;
    background: #ffffff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.intro-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-grid {
    padding: 90px 30px;
    background: #f8f9fa;
}

.services-grid h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 220px;
    background: #e9ecef;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 24px 24px 12px 24px;
    font-size: 22px;
    color: #1a252f;
}

.service-card p {
    padding: 0 24px 16px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
    flex-grow: 1;
}

.price {
    padding: 0 24px 16px 24px;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.service-link {
    display: block;
    padding: 16px 24px;
    text-align: center;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.service-link:hover {
    background: #d5dbdb;
}

.cta-section {
    padding: 80px 30px;
    background: #2c3e50;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #bdc3c7;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #2c3e50;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #ecf0f1;
}

.form-section {
    padding: 90px 30px;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.main-footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 60px 30px 20px 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: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 2;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
}

.footer-column a:hover {
    color: #3498db;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    padding: 20px 30px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    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;
    gap: 30px;
}

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.9;
}

.page-header {
    background: #f8f9fa;
    padding: 80px 30px 60px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a252f;
}

.page-header p {
    font-size: 19px;
    color: #5a6c7d;
}

.about-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 30px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.values-section {
    padding: 90px 30px;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a252f;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a252f;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.experience-section {
    padding: 90px 30px;
    background: #ffffff;
}

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

.experience-text {
    flex: 1.5;
}

.experience-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.experience-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 54px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #5a6c7d;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-visual {
    flex: 1;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    font-size: 16px;
    line-height: 1.9;
    color: #5a6c7d;
}

.service-cta {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #2980b9;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 30px;
    display: flex;
    gap: 70px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

.contact-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-visual-block {
    flex: 1;
}

.contact-visual-block img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 24px;
    object-fit: cover;
}

.contact-note {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-cta-section {
    padding: 80px 30px;
    background: #f8f9fa;
    text-align: center;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a252f;
}

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

.thanks-detail {
    font-size: 17px;
    color: #3498db;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: #95a5a6;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.legal-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-container,
    .about-split,
    .service-detail,
    .service-detail.reverse,
    .experience-container,
    .contact-layout,
    .footer-container {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

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

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

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