* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 3px;
    order: 3;
}

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

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

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

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

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

.hero-text-side h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-text-side p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #536878;
    max-width: 540px;
}

.hero-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
}

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

.btn-service {
    padding: 14px 32px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 15px;
}

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

.intro-section {
    padding: 100px 0;
}

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

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

.content-half {
    flex: 1;
}

.content-half h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.content-half h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 30px;
    color: #34495e;
    font-weight: 600;
}

.content-half p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #536878;
    line-height: 1.7;
}

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

.content-half li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #536878;
}

.image-half {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 8px;
}

.image-half img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-highlight {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-highlight h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #536878;
}

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

.service-card .btn-service {
    margin: 0 20px 25px;
    width: calc(100% - 40px);
}

.form-section {
    padding: 100px 0;
    background: #ecf0f1;
}

.form-half {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #dfe4ea;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

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

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

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

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

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

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

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro,
.values-section,
.team-section,
.approach-section {
    padding: 80px 0;
}

.values-section {
    background: #f8f9fa;
}

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

.stat-item {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

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

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

.process-list {
    margin-left: 20px;
}

.process-list li {
    margin-bottom: 20px;
    font-size: 16px;
    color: #536878;
    line-height: 1.7;
}

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

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

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

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

.service-detail-block {
    margin-bottom: 80px;
}

.price-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    display: inline-block;
}

.price-label {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
}

.contact-section {
    padding: 80px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.contact-item p {
    font-size: 16px;
    color: #536878;
    line-height: 1.7;
}

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

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
    font-weight: 700;
}

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

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.faq-item p {
    font-size: 16px;
    color: #536878;
    line-height: 1.7;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #536878;
    margin-bottom: 20px;
}

.thanks-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
    font-size: 16px;
    color: #2c3e50;
}

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

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

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-text p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #536878;
    line-height: 1.7;
}

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

.legal-text li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #536878;
    line-height: 1.6;
}

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

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-text-side,
    .hero-image-side {
        min-height: 400px;
    }

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

    .split-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .services-grid {
        flex-direction: column;
    }

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

    .testimonials {
        flex-direction: column;
    }

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

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }
}