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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    border-top: 3px solid #3498db;
}

.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: 250px;
}

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

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

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

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

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

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

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

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

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    background: #fff3cd;
    color: #856404;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #ffeaa7;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-right {
    flex: 1;
    background: #34495e;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background: #f39c12;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.intro-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.intro-right-img {
    flex: 1;
    background: #ecf0f1;
    overflow: hidden;
}

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

.intro-left-text {
    flex: 1;
    padding: 80px 60px;
    background: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-left-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.services-highlight {
    padding: 100px 40px;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.section-header-center p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #bdc3c7;
}

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

.service-card p {
    padding: 0 24px;
    font-size: 15px;
    color: #7f8c8d;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    padding: 20px 24px;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.trust-split {
    display: flex;
    min-height: 550px;
    align-items: stretch;
}

.trust-left {
    flex: 1;
    padding: 80px 60px;
    background: #34495e;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-left h2 {
    font-size: 40px;
    margin-bottom: 28px;
}

.trust-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.92;
}

.trust-right {
    flex: 1;
    background: #95a5a6;
    overflow: hidden;
}

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 12px;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.booking-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-intro {
    text-align: center;
    margin-bottom: 48px;
}

.booking-intro h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.booking-intro p {
    font-size: 17px;
    color: #7f8c8d;
}

.booking-form {
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.final-cta-split {
    display: flex;
    min-height: 450px;
    align-items: stretch;
}

.final-left-img {
    flex: 1;
    background: #bdc3c7;
    overflow: hidden;
}

.final-left-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-right-text {
    flex: 1;
    padding: 80px 60px;
    background: #16a085;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-right-text h2 {
    font-size: 44px;
    margin-bottom: 24px;
}

.final-right-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.94;
}

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

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

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

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

.footer-col p,
.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .final-cta-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left-text,
    .trust-left,
    .final-right-text {
        padding: 60px 30px;
    }

    .hero-right,
    .intro-right-img,
    .trust-right,
    .final-left-img {
        min-height: 350px;
    }

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

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

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

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

.contact-left h1 {
    font-size: 46px;
    margin-bottom: 32px;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
}

.contact-right {
    flex: 1;
    background: #ecf0f1;
    overflow: hidden;
}

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

.about-hero {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-content-split {
    display: flex;
    min-height: 550px;
}

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

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

.about-left p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #34495e;
}

.about-right {
    flex: 1;
    background: #bdc3c7;
    overflow: hidden;
}

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

.services-page-hero {
    padding: 100px 40px 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

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

.services-page-hero p {
    font-size: 19px;
    opacity: 0.92;
}

.services-detail-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

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

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

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

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
}

.thanks-container {
    text-align: center;
    background: #ffffff;
    padding: 60px 80px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    max-width: 700px;
}

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

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.thanks-container .selected-service {
    background: #ecf0f1;
    padding: 16px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: #2c3e50;
}

.thanks-container a {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container a:hover {
    background: #2980b9;
}