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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-alt {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
}

.hero-asymmetric {
    padding: 80px 40px 120px;
    background-color: #f8f9fa;
}

.hero-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-top: 60px;
    max-width: 600px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.intro-irregular {
    padding: 100px 40px;
    background-color: #ffffff;
}

.irregular-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    flex: 1.2;
}

.intro-narrow h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-visual-pull {
    flex: 0.8;
    position: relative;
    top: -50px;
    background-color: #f1f5f9;
}

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

.caption {
    padding: 16px;
    font-size: 14px;
    color: #64748b;
    font-style: italic;
}

.services-staggered {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.services-header-offset {
    max-width: 700px;
    margin-bottom: 60px;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #4a5568;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.service-card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

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

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

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
    flex: 1;
}

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

.btn-select-service {
    padding: 14px 28px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #2980b9;
    transform: translateX(4px);
}

.methodology-split {
    padding: 100px 40px;
    background-color: #ffffff;
}

.method-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.method-visual {
    flex: 0.9;
    background-color: #dfe6ed;
}

.method-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.method-text {
    flex: 1.1;
}

.method-text h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.method-pillars {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.pillar h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.pillar p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.testimonial-offset {
    padding: 100px 40px;
    background-color: #2c3e50;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.testimonial-quote {
    flex: 1;
    padding: 40px;
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #3498db;
}

.testimonial-quote blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-quote cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.cta-irregular {
    padding: 120px 40px;
    background-color: #ecf0f1;
}

.cta-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.cta-content-box {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-content-box h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-content-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-visual-element {
    flex: 0.8;
    position: relative;
    top: 40px;
    background-color: #cbd5e0;
}

.cta-visual-element img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    cursor: pointer;
    color: #7f8c8d;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.selected-service-display,
.selected-price-display {
    font-size: 16px;
    margin-bottom: 12px;
    color: #4a5568;
}

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

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

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

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

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #e74c3c;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.contact-page-layout {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-details {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

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

.about-page-layout {
    padding: 80px 40px;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-container h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.about-container h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-page-layout {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.services-page-header {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.services-page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-page-header p {
    font-size: 18px;
    color: #4a5568;
}

.legal-page-layout {
    padding: 80px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4a5568;
}

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

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.thanks-service-info {
    margin: 32px 0;
    padding: 20px;
    background-color: #ecf0f1;
    border-radius: 6px;
}

.thanks-service-info strong {
    color: #2c3e50;
}

@media (max-width: 1024px) {
    .hero-offset-container,
    .irregular-container,
    .method-container,
    .testimonial-container,
    .cta-offset-container {
        flex-direction: column;
    }

    .hero-image-offset,
    .intro-visual-pull {
        top: 0;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .service-card-large,
    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .services-header-offset h2 {
        font-size: 32px;
    }

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