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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: sticky;
    top: 33px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 15px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px 80px 120px;
    max-width: 600px;
}

.hero-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

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

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.hero-image-block {
    flex: 1.2;
    position: relative;
    margin-left: -50px;
}

.hero-image-block img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.intro-offset {
    display: flex;
    gap: 80px;
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.intro-narrow {
    flex: 1;
    max-width: 480px;
}

.intro-narrow h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

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

.intro-wide-block {
    flex: 1.5;
    position: relative;
    background: #34495e;
}

.intro-wide-block img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.intro-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    padding: 40px;
    color: white;
}

.intro-text-overlay p {
    font-size: 18px;
    line-height: 1.7;
}

.services-asymmetric {
    padding: 100px 60px;
    background: var(--bg-white);
}

.services-header-left {
    max-width: 550px;
    margin-bottom: 70px;
    padding-left: 40px;
}

.services-header-left h2 {
    font-size: 48px;
    margin-bottom: 18px;
    color: var(--primary-color);
}

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

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    padding: 45px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-offset-1 {
    margin-left: 0;
    max-width: 700px;
}

.card-offset-2 {
    margin-left: auto;
    max-width: 750px;
}

.card-offset-3 {
    margin-left: 100px;
    max-width: 800px;
}

.card-offset-4 {
    margin-left: auto;
    margin-right: 80px;
    max-width: 720px;
}

.card-offset-5 {
    margin-left: 50px;
    max-width: 780px;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

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

.service-select {
    padding: 14px 32px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-inline-block {
    padding: 80px 60px;
    background: var(--primary-color);
    text-align: center;
    margin: 0 100px 0 0;
    transform: skewY(-2deg);
    margin-top: 60px;
}

.cta-content {
    transform: skewY(2deg);
}

.cta-content h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.why-section-split {
    display: flex;
    min-height: 600px;
    margin-top: 80px;
}

.why-image {
    flex: 1;
    background: var(--bg-light);
}

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

.why-text {
    flex: 1;
    padding: 80px 70px;
    background: var(--bg-white);
}

.why-text h2 {
    font-size: 40px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

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

.benefits-list li {
    padding: 18px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
    border-bottom: 1px solid var(--bg-light);
}

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

.form-section {
    padding: 100px 60px;
    background: var(--bg-light);
    margin-top: 80px;
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 100px;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    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(--accent-color);
}

.form-submit {
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px;
    background: #fffbf0;
    border-left: 4px solid #f39c12;
    margin: 80px 100px 0 60px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #7d6608;
    line-height: 1.8;
}

.footer-asymmetric {
    background: var(--primary-color);
    color: white;
    padding: 80px 60px 30px;
    margin-top: 100px;
}

.footer-main {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col {
    flex: 1;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

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

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

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

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

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    padding: 25px 40px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: white;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #27ae60;
    color: white;
}

.cookie-accept:hover {
    background: #229954;
}

.cookie-reject {
    background: #95a5a6;
    color: white;
}

.cookie-reject:hover {
    background: #7f8c8d;
}

.page-header-offset {
    padding: 120px 60px 60px 120px;
    background: var(--bg-light);
}

.page-header-offset h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 60px;
}

.about-content-narrow {
    max-width: 700px;
    margin: 0 auto 80px;
}

.about-content-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.about-image-full {
    margin: 80px 0;
}

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

.about-values-split {
    display: flex;
    gap: 80px;
    margin-top: 80px;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.values-highlights {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    padding: 30px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

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

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

.team-section {
    padding: 80px 60px;
    background: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

.team-image-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image-grid img {
    flex: 1;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.approach-section {
    padding: 80px 60px;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.services-detailed {
    padding: 60px;
}

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

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

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

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.service-detail-desc {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-detail-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.service-detail-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

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

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-cta {
    padding: 80px 60px;
    background: var(--bg-light);
    text-align: center;
}

.services-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    padding: 60px;
}

.contact-info-asymmetric {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.contact-image-block {
    flex: 1;
    background: var(--bg-light);
}

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

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-additional p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.thanks-section {
    display: flex;
    min-height: 600px;
    padding: 80px 60px;
    gap: 80px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.8;
}

.thanks-info {
    background: var(--bg-light);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.selected-service {
    font-size: 16px;
    color: var(--text-dark);
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next ul {
    list-style: none;
    margin-bottom: 35px;
}

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

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

.thanks-image {
    flex: 1;
    background: var(--bg-light);
}

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

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.legal-content ul {
    margin: 15px 0 20px 25px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

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

    .hero-content-offset {
        padding: 60px 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-image-block {
        margin-left: 0;
        width: 100%;
    }

    .hero-image-block img {
        clip-path: none;
        height: 50vh;
    }

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .services-grid-irregular .service-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    .why-section-split {
        flex-direction: column;
    }

    .form-container-asymmetric {
        margin-left: 0;
        padding: 40px 30px;
    }

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

    .team-image-grid {
        flex-direction: column;
    }

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

    .contact-info-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}