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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

.ad-label {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #e1e8ed;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-minimal {
    padding: 24px 0;
    border-bottom: 1px solid #e1e8ed;
    background: #ffffff;
}

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

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

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

.main-nav a {
    color: #6c757d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

.hero-section {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    background-color: #95a5a6;
}

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

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-text-overlay p {
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

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

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

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

.section-dark h2 {
    color: #ffffff;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
    color: #2c3e50;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c3e50;
}

p {
    margin-bottom: 18px;
    font-size: 16px;
}

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

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

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

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e1e8ed;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e1e8ed;
}

.service-card h3 {
    padding: 20px 20px 8px 20px;
    margin: 0;
}

.service-card p {
    padding: 0 20px;
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 12px;
}

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

.select-service-btn {
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 12px 24px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.testimonials-row {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #bdc3c7;
}

.contact-form {
    margin-top: 40px;
}

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.submit-btn {
    padding: 14px 40px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

.footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 0 24px 0;
}

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #4a5f7f;
    padding-top: 24px;
    text-align: center;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

.cookie-btn.reject {
    background: #e1e8ed;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #cbd5e0;
}

.page-header {
    padding: 60px 0 40px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e8ed;
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e1e8ed;
}

.price-highlight {
    margin-top: 20px;
    padding: 16px 24px;
    background: #e8f5e9;
    border-left: 4px solid #27ae60;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    display: inline-block;
    border-radius: 4px;
}

.cta-section {
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    transition: background 0.2s;
}

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

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

.contact-info-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e1e8ed;
}

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

.contact-item h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-item p {
    color: #6c757d;
    font-size: 15px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e1e8ed;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6c757d;
}

.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 18px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
}

.thanks-content a {
    color: #3498db;
}

.btn-back {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    .main-nav {
        gap: 20px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-white,
    .section-gray,
    .section-dark {
        padding: 48px 0;
    }
}