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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
}

.header-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 15px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.hero-offset {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: 500px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(-30px);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.intro-diagonal {
    background-color: #ecf0f1;
    padding: 80px 0;
    transform: skewY(-2deg);
    margin: 100px 0;
}

.diagonal-block {
    transform: skewY(2deg);
}

.intro-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-cards-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-asymmetric {
    margin-bottom: 60px;
    max-width: 600px;
}

.section-header-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.section-header-asymmetric p {
    font-size: 18px;
    color: #7f8c8d;
}

.cards-staggered {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.card-left {
    flex-direction: row;
    padding-left: 0;
}

.card-right {
    flex-direction: row-reverse;
    padding-right: 0;
}

.card-center {
    flex-direction: row;
    margin: 0 auto;
    max-width: 1000px;
}

.card-image {
    flex: 1;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.card-content {
    flex: 1;
    padding: 20px;
}

.card-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.btn-select-service {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

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

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #7f8c8d;
}

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

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    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: #3498db;
}

.btn-submit {
    padding: 15px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.trust-block-diagonal {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.trust-content {
    flex: 1;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-content p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.disclaimer-section {
    background-color: #fff3cd;
    padding: 40px 0;
    margin: 80px 0;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #ecf0f1;
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.about-hero-diagonal {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-content-offset {
    max-width: 800px;
}

.about-content-offset h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.about-content-offset p {
    font-size: 20px;
    color: #7f8c8d;
    line-height: 1.7;
}

.about-story-asymmetric {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image-left {
    flex: 1;
}

.story-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.story-content-right p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-grid-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-grid-offset h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.values-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.team-section-staggered {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-intro {
    max-width: 700px;
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.7;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.cta-section-diagonal {
    background-color: #3498db;
    padding: 80px 0;
    text-align: center;
    margin: 100px 0;
}

.cta-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-hero-offset {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.services-hero-offset h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-hero-offset p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-detail-asymmetric {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.card-left-offset {
    flex-direction: row;
}

.card-right-offset {
    flex-direction: row-reverse;
}

.card-center-offset {
    flex-direction: row;
    margin: 0 auto;
    max-width: 1200px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-info ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-info ul li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

.contact-hero-diagonal {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.contact-hero-diagonal h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-hero-diagonal p {
    font-size: 20px;
    color: #7f8c8d;
}

.contact-info-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details-left {
    flex: 1;
}

.contact-details-left h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.7;
}

.contact-image-right {
    flex: 1;
}

.contact-image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.contact-cta-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.cta-box {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.thanks-section-centered {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.thanks-icon {
    margin-bottom: 20px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-confirm {
    background-color: #d5f4e6;
    padding: 20px 30px;
    border-radius: 5px;
    font-size: 16px;
    color: #27ae60;
    font-weight: 600;
}

.thanks-next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

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

.thanks-next-steps ul li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.thanks-next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn-primary {
    padding: 12px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    padding: 12px 30px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content em {
    color: #95a5a6;
}

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

    .nav-section {
        flex-direction: column;
        gap: 15px;
    }

    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-image-right {
        transform: none;
    }

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

    .card-right,
    .card-right-offset {
        flex-direction: column;
    }

    .trust-block-diagonal,
    .about-story-asymmetric,
    .contact-info-offset {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}