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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.ad-notice {
    background: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    background: #2c3e50;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

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

.hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 50px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s;
}

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

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-alternating {
    background: #f8f9fa;
    padding: 60px 20px;
}

.feature-row {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-text {
    flex: 1;
}

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

.feature-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.services-section {
    padding: 80px 20px;
    background: #fff;
}

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

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

.section-header-center p {
    font-size: 20px;
    color: #666;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    color: #27ae60;
    font-weight: bold;
    margin: 20px 0;
}

.select-service {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.form-section {
    background: #ecf0f1;
    padding: 80px 20px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

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

.form-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.form-wrapper {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.selected-service-display {
    background: #e8f5e9;
    border: 2px solid #27ae60;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 25px;
}

.selected-service-display p {
    margin: 0;
    color: #27ae60;
    font-weight: bold;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.trust-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.6;
}

.disclaimer-section {
    background: #fff3cd;
    padding: 40px 20px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-content p {
    font-size: 16px;
    color: #856404;
    line-height: 1.7;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: #7f8c8d;
}

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 80px 20px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 22px;
    opacity: 0.9;
}

.about-content-split {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.values-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.values-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

.value-card p {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.expertise-split {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.expertise-visual {
    flex: 1;
}

.expertise-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.expertise-text {
    flex: 1;
}

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

.expertise-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.approach-section {
    background: #fff;
    padding: 80px 20px;
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

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

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

.step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.services-detailed {
    padding: 40px 20px 80px;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 50px;
    align-items: center;
}

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

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

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

.price-tag {
    font-size: 36px;
    color: #27ae60;
    font-weight: bold;
    margin: 15px 0;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-cta {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    transition: background 0.3s;
}

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

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.additional-info {
    background: #f8f9fa;
    padding: 60px 20px;
}

.additional-info h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.info-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-block {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.info-block h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-split {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.contact-note {
    background: #e3f2fd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.contact-note p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.directions-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.directions-section h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.directions-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.direction-option {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.direction-option h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.direction-option p {
    font-size: 17px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.faq-contact {
    padding: 60px 20px;
}

.faq-contact h2 {
    font-size: 36px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

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

.faq-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-details {
    background: #e8f5e9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info h3 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 10px;
}

.selected-service-info p {
    font-size: 18px;
    color: #2c3e50;
}

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

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

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

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

.step-icon {
    width: 45px;
    height: 45px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    padding-top: 8px;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 17px;
    transition: background 0.3s;
}

.btn-primary {
    background: #3498db;
    color: #fff;
}

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

.btn-secondary {
    background: #95a5a6;
    color: #fff;
}

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

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

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

.legal-page .updated {
    font-size: 15px;
    color: #95a5a6;
    margin-bottom: 40px;
}

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

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

.legal-page p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .feature-row,
    .form-container-split,
    .about-content-split,
    .expertise-split,
    .service-detail,
    .contact-split {
        flex-direction: column;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

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

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

    .service-card {
        width: 100%;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}