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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #f5f5f5;
    --accent-color: #4a90b5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #ddd;
    --background-light: #fafafa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
}

.ad-disclosure {
    background: #fffbea;
    color: #7c6d2e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e5d9a1;
}

.main-nav {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--background-light);
}

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

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    background: #e5e5e5;
}

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

.intro-split {
    display: flex;
    max-width: 1300px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

.intro-image {
    flex: 1;
    background: #e5e5e5;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.services-preview {
    background: var(--secondary-color);
    padding: 90px 40px;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

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

.service-card {
    background: #fff;
    flex: 0 0 calc(33.333% - 25px);
    max-width: 370px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e5e5e5;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 25px 25px;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 38px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #1e4a5f;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.form-section {
    background: #fff;
    padding: 90px 40px;
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 38px;
    margin-bottom: 22px;
    color: var(--text-dark);
}

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

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 0 12px 35px;
    position: relative;
}

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

.form-wrapper {
    flex: 1;
}

.contact-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
}

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

.trust-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.trust-content {
    text-align: center;
    margin-bottom: 50px;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.trust-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

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

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.main-footer {
    background: #2a2a2a;
    color: #ccc;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #999;
    max-width: 800px;
    margin: 15px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid var(--border-color);
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.show {
    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;
    font-size: 15px;
    color: var(--text-dark);
}

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

.cookie-buttons button {
    padding: 12px 28px;
    font-size: 15px;
}

.page-header {
    background: var(--background-light);
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-header p {
    font-size: 19px;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-item-split {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background: #e5e5e5;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 24px;
    line-height: 1;
}

.service-pricing {
    background: var(--background-light);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
}

.cta-banner {
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 70px 40px;
}

.cta-banner h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-banner .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

.about-intro-split {
    display: flex;
    max-width: 1300px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.about-image {
    flex: 1;
    background: #e5e5e5;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.values-section {
    background: var(--secondary-color);
    padding: 80px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.value-card {
    background: #fff;
    padding: 35px;
    flex: 0 0 calc(50% - 18px);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.team-split {
    display: flex;
    max-width: 1300px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

.team-image {
    flex: 1;
    background: #e5e5e5;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.team-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

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

.approach-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.contact-split {
    display: flex;
    max-width: 1300px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-block .note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    background: #e5e5e5;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.response-info {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

.response-info h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

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

.thanks-section {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info {
    background: var(--background-light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.thanks-info p {
    font-size: 16px;
    color: var(--text-light);
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

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

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

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.legal-date {
    margin-top: 40px;
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .service-item-split,
    .form-container-split,
    .about-intro-split,
    .team-split,
    .contact-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-item-split.reverse,
    .team-split.reverse {
        flex-direction: column;
    }

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

    .hero-content {
        padding: 50px 30px;
    }

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

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

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

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

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

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
    }

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

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

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

    .thanks-actions a {
        width: 100%;
    }
}