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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90b8;
    --accent-color: #e8a547;
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.cookie-actions button {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #d69437;
}

.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background: var(--bg-light);
    border-radius: 3px;
}

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--primary-color);
}

.hero-split {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.btn-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #d69437;
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.split-image {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-overview {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header-center p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
    background: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.btn-select {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.split-form {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.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: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d69437;
    transform: translateY(-2px);
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

.trust-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.trust-content-center h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.testimonials-split {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.cta-final {
    background: var(--primary-color);
    padding: 60px 0;
}

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

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-action {
    flex: 0 0 auto;
}

.btn-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: #d69437;
    transform: translateY(-2px);
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 800px;
    margin: 15px auto 0;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--bg-white);
}

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

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

.about-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-block {
    flex: 1;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
}

.value-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.approach-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.approach-split {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-item {
    flex: 1;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.approach-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.approach-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-box-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-center h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-box-center p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-details {
    padding: 80px 0;
    background: var(--bg-white);
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    flex: 0 0 calc(50% - 20px);
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-item .price-tag {
    font-size: 28px;
}

.contact-info-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.info-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-block {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.info-block h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.legal-text h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-text p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-text ul li {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-message {
    padding: 100px 0;
    text-align: center;
    background: var(--bg-light);
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thanks-box h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.thanks-box .selected-service {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin: 30px 0;
}

.thanks-box .selected-service strong {
    color: var(--primary-color);
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero-content,
    .split-container,
    .service-card,
    .cta-split,
    .testimonials-split,
    .footer-grid,
    .values-split,
    .approach-split,
    .info-grid {
        flex-direction: column;
    }

    .service-card.reverse {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .service-item {
        flex: 0 0 100%;
    }
}