* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 300px;
}

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

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

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4CAF50;
}

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

.hero-text-block {
    flex: 1;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.hero-image-offset {
    flex: 1;
    position: relative;
    top: -40px;
    background-color: #f0f0f0;
}

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

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

.content-narrow-left {
    flex: 1;
    max-width: 500px;
}

.content-narrow-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

.content-narrow-left p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.8;
}

.insight-card-right {
    flex: 1;
    background-color: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #4CAF50;
    position: relative;
    top: 60px;
}

.insight-card-right img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    object-fit: cover;
}

.insight-text {
    font-size: 16px;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.6;
}

.services-preview {
    padding: 100px 40px;
    background-color: #fafafa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    font-weight: 700;
}

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

.service-card {
    background-color: white;
    width: calc(33.333% - 20px);
    min-width: 320px;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 16px 24px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: #5a5a5a;
    margin: 0 24px 20px 24px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #4CAF50;
    margin: 0 24px 20px 24px;
}

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 12px;
    background-color: #1a1a1a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #333;
}

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

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

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

.consultation-form {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #2e7d32;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.trust-section {
    padding: 100px 40px;
    background-color: #1a1a1a;
    color: white;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonials-offset {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial:first-child {
    margin-top: -40px;
}

.testimonial:last-child {
    margin-top: 40px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial cite {
    font-size: 14px;
    color: #aaa;
    font-style: normal;
}

.footer {
    background-color: #f5f5f5;
    padding: 60px 40px 20px 40px;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column p {
    color: #666;
    font-size: 14px;
}

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

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

.footer-column a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4CAF50;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color: #ebebeb;
    border-left: 3px solid #4CAF50;
    font-size: 13px;
    line-height: 1.6;
    color: #4a4a4a;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #666;
}

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

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

    .hero-image-offset {
        top: 0;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
        margin: 60px auto;
        padding: 0 20px;
    }

    .insight-card-right {
        top: 0;
    }

    .service-card {
        width: 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .testimonials-offset {
        flex-direction: column;
    }

    .testimonial:first-child,
    .testimonial:last-child {
        margin-top: 0;
    }
}

.page-header {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

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

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #4a4a4a;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 10px;
}

.thanks-container {
    text-align: center;
    padding: 100px 40px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-container h1 {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 600px;
}

.thanks-container a {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-container a:hover {
    background-color: #45a049;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.service-item h3 {
    margin-top: 0;
    font-size: 26px;
}

.service-item .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin: 15px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact-card h3 {
    margin-top: 0;
}

.contact-card p {
    font-size: 15px;
}

.about-section {
    margin-bottom: 50px;
}

.about-section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    object-fit: cover;
    background-color: #e0e0e0;
}