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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

.btn-reject {
    background-color: #e74c3c;
    color: white;
}

.btn-reject:hover {
    background-color: #c0392b;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: relative;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 4px 12px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 40px;
}

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

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 60px 40px;
    background-color: #f8f9fa;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding-right: 60px;
    max-width: 600px;
}

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

.hero-content-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #5a6c7d;
    line-height: 1.7;
}

.hero-image-right {
    flex: 1;
    background-color: #dfe6e9;
    position: relative;
    margin-left: -100px;
    margin-top: 40px;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-hero {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-hero:hover {
    background-color: #2980b9;
}

.intro-irregular {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    align-items: flex-start;
    background-color: #ffffff;
}

.intro-block {
    flex: 1.2;
    padding-top: 40px;
}

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

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-visual {
    flex: 0.8;
    margin-top: -60px;
    background-color: #dfe6e9;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-section {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 80px 40px;
    margin: 60px 40px;
    position: relative;
}

.insight-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.insight-wrapper h3 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #ffffff;
}

.insight-wrapper p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.services-asymmetric {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-title-offset {
    font-size: 42px;
    margin-bottom: 60px;
    margin-left: 80px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card-offset-left {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
    padding-left: 40px;
}

.service-card-offset-right {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
    padding-right: 40px;
}

.service-image {
    flex: 0 0 400px;
    background-color: #dfe6e9;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.btn-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #2980b9;
}

.testimonials-scattered {
    padding: 80px 40px;
    background-color: #ffffff;
}

.testimonials-scattered h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.testimonial-item.offset {
    margin-top: 40px;
}

.testimonial-item p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

.form-section {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-container > p {
    margin-bottom: 32px;
    color: #5a6c7d;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #fff9e6;
    border-top: 3px solid #f39c12;
    border-bottom: 3px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

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

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.about-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.story-content img {
    flex: 0 0 450px;
    background-color: #dfe6e9;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.values-section {
    padding: 80px 40px;
    background-color: #ecf0f1;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card.offset-card {
    margin-top: 30px;
}

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

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

.approach-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.approach-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.approach-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.approach-image {
    flex: 0 0 400px;
    margin-top: -40px;
    background-color: #dfe6e9;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-about {
    padding: 80px 40px;
    background-color: #3498db;
    text-align: center;
    color: white;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 16px 36px;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-cta:hover {
    background-color: #ecf0f1;
}

.services-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.services-hero p {
    font-size: 20px;
    color: #5a6c7d;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-block.left-aligned {
    padding-left: 60px;
}

.service-detail-block.right-aligned {
    padding-right: 60px;
}

.service-detail-content {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #5a6c7d;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-outcome {
    padding: 20px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    margin: 24px 0;
}

.service-price-detail {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.service-detail-image {
    flex: 0 0 450px;
    background-color: #dfe6e9;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-hero {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.contact-hero p {
    font-size: 20px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    padding: 60px 40px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-detail {
    flex: 1;
}

.contact-detail h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.contact-image {
    flex: 0 0 500px;
    background-color: #dfe6e9;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-message {
    padding: 40px;
    background-color: #f8f9fa;
    margin-top: 40px;
}

.contact-message h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-message p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #5a6c7d;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.thanks-details {
    padding: 20px;
    background-color: #e8f5e9;
    margin: 30px 0;
    border-radius: 5px;
}

.thanks-message {
    font-size: 16px;
    margin: 30px 0;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.legal-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.cookie-table thead {
    background-color: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
}

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

    .hero-content-left {
        padding-right: 0;
        max-width: 100%;
    }

    .hero-image-right {
        margin-left: 0;
        width: 100%;
        max-height: 400px;
    }

    .intro-irregular {
        flex-direction: column;
        gap: 40px;
    }

    .service-card-offset-left,
    .service-card-offset-right {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .service-image {
        flex: 0 0 300px;
        width: 100%;
    }

    .story-content {
        flex-direction: column;
    }

    .story-content img {
        flex: 0 0 auto;
        width: 100%;
    }

    .approach-content {
        flex-direction: column;
    }

    .approach-image {
        flex: 0 0 auto;
        width: 100%;
        margin-top: 0;
    }

    .service-detail-block {
        flex-direction: column;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
        max-height: 400px;
    }

    .contact-info-block {
        flex-direction: column;
    }

    .contact-image {
        flex: 0 0 auto;
        width: 100%;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        padding: 15px 20px;
    }

    .ad-disclosure {
        position: static;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

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

    .hero-content-left p {
        font-size: 18px;
    }

    .services-title-offset {
        margin-left: 0;
        text-align: center;
    }

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

    .testimonial-item.offset {
        margin-top: 0;
    }

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

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}