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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

.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;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #4a9eff;
    color: #ffffff;
}

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

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

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

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
}

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

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a9eff;
}

.hero-magazine {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

.hero-grid {
    display: flex;
    gap: 30px;
}

.hero-main {
    flex: 2;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero-main img {
    width: 100%;
    height: 600px;
    display: block;
}

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

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-overlay p {
    font-size: 18px;
    opacity: 0.9;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.featured-box {
    background-color: #ffffff;
    padding: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.featured-box img {
    width: 100%;
    height: 200px;
    margin-bottom: 16px;
    border-radius: 4px;
}

.featured-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.featured-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 12px;
    color: #1a1a1a;
}

.featured-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}

.text-link {
    color: #4a9eff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #357abd;
}

.editorial-intro {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.intro-columns {
    display: flex;
    gap: 60px;
}

.col-left,
.col-right {
    flex: 1;
}

.col-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.col-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.col-right img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 12px;
}

.image-caption {
    font-size: 13px;
    color: #777;
    font-style: italic;
}

.problem-reveal {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.diagonal-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-block {
    flex: 1.5;
}

.text-block h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.text-block p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

.visual-accent {
    flex: 1;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 4px;
    color: #ffffff;
}

.visual-accent blockquote {
    font-size: 24px;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 16px;
}

.visual-accent cite {
    font-size: 14px;
    opacity: 0.8;
}

.services-grid {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-header-offset {
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-offset p {
    font-size: 18px;
    color: #555;
}

.three-column-services {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 240px;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

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

.service-card ul {
    margin: 0 20px 16px;
    padding-left: 20px;
}

.service-card li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #4a9eff;
    margin: 20px;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-building {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.asymmetric-trust {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #4a9eff;
    border-radius: 4px;
}

.testimonial p {
    font-size: 16px;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.about-preview {
    background-color: #ffffff;
    padding: 80px 0;
}

.split-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.inline-cta {
    display: inline-block;
    color: #4a9eff;
    text-decoration: none;
    font-size: 16px;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.inline-cta:hover {
    color: #357abd;
}

.form-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #555;
    margin-bottom: 32px;
    font-size: 16px;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #fef9e7;
    border: 1px solid #f4d03f;
    border-radius: 4px;
}

.disclaimer-box p {
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

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

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #4a9eff;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.about-story,
.services-detail,
.contact-section,
.legal-page {
    padding: 60px 0;
}

.story-layout {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.story-text {
    flex: 1.5;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.values-section {
    background-color: #f5f5f5;
    padding: 60px;
    border-radius: 4px;
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    display: flex;
    gap: 40px;
}

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-approach,
.mission-block {
    margin-bottom: 60px;
}

.team-approach h2,
.mission-block h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-approach p,
.mission-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.team-approach img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 24px;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 18px;
    color: #555;
}

.service-full {
    margin-bottom: 60px;
    background-color: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.service-content {
    display: flex;
    gap: 0;
}

.service-content img {
    flex: 1;
    width: 50%;
    height: auto;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-info ul {
    margin: 20px 0 20px 20px;
}

.service-info li {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.price-large {
    font-size: 36px;
    font-weight: bold;
    color: #4a9eff;
    margin: 24px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-container > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 32px;
}

.service-info-box {
    background-color: #f5f5f5;
    padding: 24px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.service-info-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.service-info-box p {
    font-size: 16px;
    color: #4a9eff;
    font-weight: bold;
}

.next-steps {
    text-align: left;
    margin-bottom: 32px;
}

.next-steps h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
    text-align: center;
}

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

.next-steps li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4a9eff;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #357abd;
}

.btn-secondary {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page .updated {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 30px;
}

.legal-page li {
    font-size: 16px;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #4a9eff;
    text-decoration: underline;
}

.legal-page strong {
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .hero-grid,
    .intro-columns,
    .diagonal-layout,
    .split-about,
    .story-layout,
    .values-grid,
    .service-content,
    .contact-layout {
        flex-direction: column;
    }

    .three-column-services {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .hero-main img {
        height: 400px;
    }

    .service-content img {
        width: 100%;
    }
}

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

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

    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .section-header-offset h2,
    .trust-text h2,
    .about-text h2,
    .text-block h2,
    .story-text h2,
    .values-section h2,
    .team-approach h2,
    .mission-block h2,
    .contact-info h2 {
        font-size: 28px;
    }

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

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