* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.cookie-banner.active {
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    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: 1px solid #ffffff;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 16px 40px;
    text-decoration: none;
    color: #2c3e50;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.mobile-menu a:hover {
    background-color: #f8f9fa;
}

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.narrow-container {
    max-width: 720px;
    margin: 0 auto;
}

.intro-lead {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 500;
}

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

.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.split-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.insight-reveal {
    padding: 120px 20px;
    background-color: #ecf0f1;
}

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

.insight-reveal > .narrow-container > p {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    color: #555;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.insight-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

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

.trust-building {
    padding: 100px 20px;
    background-color: #ffffff;
}

.offset-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.offset-content {
    flex: 1.2;
}

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

.offset-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #444;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    color: #333;
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.offset-image {
    flex: 0.8;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.testimonials-inline {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #ffffff;
}

.testimonial-block {
    margin-bottom: 48px;
}

.testimonial-block blockquote {
    border-left: 4px solid #3498db;
    padding-left: 28px;
    margin-bottom: 32px;
}

.testimonial-block p {
    font-size: 19px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-block cite {
    font-size: 15px;
    font-style: normal;
    opacity: 0.8;
}

.services-reveal {
    padding: 120px 20px;
    background-color: #f8f9fa;
}

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

.centered-heading {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.centered-subtext {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 70px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 21px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

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

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

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

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

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

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-row textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label a {
    color: #3498db;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

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

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

.final-trust {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.trust-banner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trust-banner h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-banner p {
    font-size: 18px;
    color: #555;
}

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: #777;
    text-align: center;
    font-style: italic;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

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

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .split-layout,
    .offset-layout {
        flex-direction: column;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }
}

.page-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 46px;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 19px;
    opacity: 0.9;
}

.about-story {
    padding: 100px 20px;
    background-color: #ffffff;
}

.team-values {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.value-blocks {
    margin-top: 60px;
}

.value-block {
    background-color: #ffffff;
    padding: 36px;
    margin-bottom: 28px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

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

.about-approach {
    padding: 100px 20px;
    background-color: #ffffff;
}

.team-commitment {
    padding: 100px 20px;
    background-color: #ecf0f1;
}

.team-commitment h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-commitment p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-block {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

.contact-info {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

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

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

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

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

.contact-image {
    flex: 1;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #444;
}

.contact-cta {
    padding: 80px 20px;
    background-color: #ffffff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ecf0f1;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #555;
}

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

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

.thanks-hero {
    padding: 120px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.thanks-subtitle {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

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

.service-confirmation p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #666;
}

.selected-service-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.next-steps li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

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

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

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #34495e;
}

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

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

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

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }

    .split-layout,
    .offset-layout {
        flex-direction: column;
    }

    .footer-container {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }

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

    .contact-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .ad-disclosure {
        display: none;
    }

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

    .hero-subtext {
        font-size: 17px;
    }

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

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

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

    .btn-accept,
    .btn-reject {
        flex: 1;
    }

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

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

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