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

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

.container-wide {
    max-width: 100%;
    padding: 0 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    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;
    margin: 0;
    min-width: 250px;
}

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

.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: 1px solid #ffffff;
}

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

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

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

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

.nav-main {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

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

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

.ad-label {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #34495e;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    cursor: pointer;
    font-size: 16px;
}

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

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

.intro-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.intro-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 60px;
}

.service-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
    flex: 1;
}

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

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

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

.form-split {
    display: flex;
    background: #ecf0f1;
    min-height: 600px;
}

.form-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

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

.info-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.info-item p {
    margin: 0;
    font-size: 16px;
    color: #7f8c8d;
}

.form-right {
    flex: 1;
    padding: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-box {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.selected-service-box.active {
    background: #d5f4e6;
    border: 2px solid #27ae60;
}

.selected-service-box .info-text {
    color: #7f8c8d;
    font-size: 15px;
}

.selected-service-box h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 6px;
}

.selected-service-box .service-price-display {
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.trust-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

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

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

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

.page-hero {
    background: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #7f8c8d;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
    margin-bottom: 60px;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #34495e;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #34495e;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.service-price-large {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-section {
    background: #3498db;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background: #ecf0f1;
}

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

.about-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.about-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.values-section {
    padding: 80px 0;
    background: #ecf0f1;
}

.values-split {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

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

.team-left {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

.team-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.team-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

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

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

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

.process-steps {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #7f8c8d;
}

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

.contact-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #34495e;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

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

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin: 0;
}

.no-link {
    color: #34495e;
}

.contact-note {
    background: #fff3cd;
    padding: 20px;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.contact-note p {
    margin: 0;
    font-size: 15px;
    color: #856404;
}

.contact-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.location-info {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    justify-content: center;
}

.location-detail {
    max-width: 400px;
}

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

.location-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.thanks-section {
    padding: 100px 0;
    background: #ecf0f1;
    min-height: 70vh;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.service-confirmation {
    background: #d5f4e6;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

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

.service-confirmation .price {
    font-size: 22px;
    color: #27ae60;
    font-weight: 700;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

.legal-intro {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #34495e;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #95a5a6;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-split,
    .team-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

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

    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .nav-main {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .values-split,
    .process-steps {
        flex-direction: column;
    }

    .team-stats,
    .location-info {
        flex-direction: column;
        gap: 20px;
    }

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

    .service-grid-split {
        flex-direction: column;
    }
}