* {
    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: #333;
    background: #fff;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    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: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    font-size: 11px;
    color: #95a5a6;
    border-left: 1px solid #e0e0e0;
    padding-left: 20px;
    margin-left: 10px;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

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

.cta-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

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

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

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

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

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

.content-right p,
.content-left p {
    font-size: 17px;
    color: #555;
    margin-bottom: 16px;
}

.content-left img,
.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.btn-select {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.process-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    color: #666;
}

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

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

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

.form-group-checkbox {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input {
    margin-top: 4px;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #555;
}

.form-group-checkbox a {
    color: #3498db;
    text-decoration: none;
}

.form-group-checkbox a:hover {
    text-decoration: underline;
}

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

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

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

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

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.disclaimer-section {
    padding: 60px 0;
    background: #ecf0f1;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.thanks-box .selected-service {
    display: inline-block;
    background: #f8f9fa;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    color: #3498db;
    margin: 20px 0;
}

.thanks-box a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.page-header {
    background: #2c3e50;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

.page-content {
    padding: 80px 0;
}

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

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.page-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

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

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

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.value-card p {
    font-size: 15px;
    color: #555;
}

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .hero-right {
        min-height: 300px;
    }

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

    .nav {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .ad-label {
        border: none;
        padding: 0;
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }
}
