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

:root {
    --primary-color: #1a5490;
    --secondary-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

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

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    align-items: stretch;
    min-height: 90vh;
    padding: 80px 0 0 0;
    background-color: var(--bg-light);
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
    background-color: #e8f4f8;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #134070;
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-asymmetric {
    display: flex;
    align-items: stretch;
    padding: 0;
    background-color: var(--bg-white);
}

.intro-block-small {
    flex: 0 0 35%;
    background-color: #f0f7fa;
    overflow: hidden;
}

.intro-block-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-block-large {
    flex: 0 0 65%;
    padding: 100px 80px 100px 70px;
}

.intro-block-large h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.services-grid {
    padding: 120px 60px;
    background-color: var(--bg-light);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 20px;
}

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

.section-header-offset p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(50% - 15px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
}

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

.service-card-wide {
    flex: 1 1 100%;
    flex-direction: row-reverse;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e8f4f8;
}

.service-card-large img,
.service-card-wide img {
    width: 50%;
    height: auto;
}

.service-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-large .service-content,
.service-card-wide .service-content {
    width: 50%;
}

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

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

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 80px;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 80px;
}

.trust-content-offset {
    flex: 0 0 45%;
}

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

.trust-content-offset p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.trust-stats {
    flex: 1;
    display: flex;
    gap: 50px;
    justify-content: space-around;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.form-section-overlay {
    padding: 120px 80px;
    background: linear-gradient(135deg, #1a5490 0%, #2980b9 100%);
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-container > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 80px;
    background-color: #fef9e7;
    border-top: 2px solid #f9e79f;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #7d6608;
    text-align: center;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 60px 80px 30px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--bg-white);
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--success-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    background-color: #229954;
}

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

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-hero-minimal {
    padding: 150px 80px 80px;
    background-color: var(--bg-light);
    text-align: left;
}

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

.page-hero-minimal p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
}

.about-story {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.story-image-offset {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8f4f8;
}

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

.story-content {
    flex: 1;
}

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

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

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

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

.values-grid-asymmetric {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.value-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
    color: var(--bg-white);
    transform: scale(1.05);
}

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

.value-card-highlight h3 {
    color: var(--bg-white);
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
}

.value-card-highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.team-approach {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
}

.approach-content {
    flex: 1;
}

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

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

.approach-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8f4f8;
}

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

.cta-about {
    padding: 100px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2980b9 100%);
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-about .cta-primary {
    background-color: var(--secondary-color);
}

.cta-about .cta-primary:hover {
    background-color: #e67e22;
}

.services-detailed {
    padding: 80px 80px 120px;
    background-color: var(--bg-white);
}

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

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

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

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

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

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

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

.service-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.service-price-block {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.price-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.service-detail-image {
    flex: 0 0 45%;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8f4f8;
}

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

.contact-layout {
    display: flex;
    padding: 80px 80px;
    gap: 60px;
    background-color: var(--bg-white);
}

.contact-info-block {
    flex: 0 0 50%;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.contact-note {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 10px;
    font-style: italic;
}

.contact-image-block {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    background-color: #e8f4f8;
}

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

.contact-cta-section {
    padding: 100px 80px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.contact-cta-section p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 80px 100px;
    background-color: var(--bg-light);
}

.thanks-content {
    max-width: 800px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--success-color);
}

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

.thanks-service-info {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 50px;
    font-size: 16px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 15px 0 15px 50px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

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

.legal-page {
    padding: 150px 80px 100px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page ul,
.legal-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

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

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.last-updated {
    margin-top: 50px;
    font-size: 14px;
    font-style: italic;
    color: #95a5a6;
}

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

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

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

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

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .about-story,
    .team-approach,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right,
    .intro-block-small,
    .intro-block-large,
    .story-image-offset,
    .story-content,
    .approach-image,
    .approach-content,
    .service-detail-image,
    .service-detail-content,
    .contact-info-block,
    .contact-image-block {
        flex: 1 1 100%;
        width: 100%;
    }

    .hero-image-right {
        min-height: 400px;
    }

    .nav-floating {
        position: relative;
        top: 0;
        right: 0;
        border-radius: 0;
    }

    .services-container-asymmetric {
        flex-direction: column;
    }

    .service-card,
    .service-card-large,
    .service-card-wide {
        flex-direction: column;
        min-width: auto;
    }

    .service-card-large img,
    .service-card-wide img {
        width: 100%;
        height: 250px;
    }

    .service-card-large .service-content,
    .service-card-wide .service-content {
        width: 100%;
    }

    .trust-section {
        flex-direction: column;
        gap: 40px;
    }

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

    .value-card-highlight {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 768px) {
    .hero-content-left,
    .intro-block-large,
    .services-grid,
    .trust-section,
    .form-section-overlay,
    .disclaimer-section,
    .footer-asymmetric,
    .page-hero-minimal,
    .about-story,
    .values-section,
    .team-approach,
    .cta-about,
    .services-detailed,
    .contact-layout,
    .contact-cta-section,
    .thanks-section,
    .legal-page {
        padding-left: 30px;
        padding-right: 30px;
    }

    .form-container {
        padding: 40px 30px;
    }

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

    .section-header-offset h2,
    .values-section h2,
    .cta-about h2,
    .contact-cta-section h2 {
        font-size: 32px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}
