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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background: #e8e8e8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.cta-secondary {
    display: inline-block;
    background: #ecf0f1;
    color: #2c3e50;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-secondary:hover {
    background: #d5dbdb;
}

.story-section {
    padding: 80px 20px;
    background: #ffffff;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-section p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.insight-split {
    display: flex;
    align-items: stretch;
}

.split-image-left {
    flex: 1;
    background: #e8e8e8;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content-right,
.split-content-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-right h3,
.split-content-left h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content-right p,
.split-content-left p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 16px;
}

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

.benefit-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

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

.dark-bg {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 20px;
}

.dark-bg h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.problem-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #34495e;
    padding: 32px;
    border-radius: 8px;
}

.problem-card h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ecf0f1;
}

.problem-card p {
    color: #bdc3c7;
    font-size: 16px;
}

.solution-split {
    display: flex;
    align-items: stretch;
    background: #f8f9fa;
}

.split-image-right {
    flex: 1;
    background: #e8e8e8;
}

.trust-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 32px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

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

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

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

.services-reveal h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 48px;
}

.services-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 340px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
    display: block;
}

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

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

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

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

.form-section form {
    margin-top: 32px;
}

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

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.final-cta-split {
    display: flex;
    align-items: stretch;
    background: #2c3e50;
}

.cta-left-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.cta-left-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-left-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.cta-right-image {
    flex: 1;
    background: #e8e8e8;
}

.cta-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    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: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    padding: 24px;
    background: #2c3e50;
    border-radius: 6px;
    margin-bottom: 32px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: stretch;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #f8f9fa;
}

.hero-content-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    color: #5a5a5a;
}

.hero-image-right {
    flex: 1;
    background: #e8e8e8;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.about-story p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    align-items: stretch;
}

.values-list {
    list-style: none;
    margin-top: 24px;
}

.values-list li {
    margin-bottom: 20px;
    font-size: 17px;
    color: #2c3e50;
}

.values-list li strong {
    color: #1a1a1a;
}

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

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

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team-member img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #e8e8e8;
}

.team-member h4 {
    font-size: 20px;
    margin: 20px 24px 12px;
    color: #1a1a1a;
}

.team-member p {
    font-size: 15px;
    color: #5a5a5a;
    margin: 0 24px 24px;
}

.approach-split {
    display: flex;
    align-items: stretch;
    background: #ffffff;
}

.cta-section {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 32px;
}

.services-detail {
    padding: 60px 20px;
    background: #ffffff;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 80px;
}

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

.service-detail-split .service-image-left {
    flex: 1;
    background: #e8e8e8;
}

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

.service-detail-split .service-content-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-split p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #2c3e50;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 24px;
    line-height: 16px;
}

.service-pricing {
    margin: 32px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.service-pricing .price-label {
    font-size: 16px;
    color: #7f8c8d;
}

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

.contact-info-section {
    padding: 60px 20px;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.contact-details {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.8;
}

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: #5a5a5a;
    margin: 0;
}

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

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

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

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

.visit-section p {
    font-size: 17px;
    color: #5a5a5a;
    margin-bottom: 16px;
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 16px;
}

.thanks-next-steps {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-next-steps ol {
    padding-left: 24px;
}

.thanks-next-steps ol li {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

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

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

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

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-page ul li {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

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

@media (max-width: 768px) {
    .hero-split,
    .insight-split,
    .solution-split,
    .final-cta-split,
    .page-hero-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-content-left,
    .split-content-right,
    .split-content-left,
    .cta-left-content,
    .service-detail-split .service-content-right {
        padding: 40px 24px;
    }

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

    .nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-end;
    }

    .container-header {
        padding: 0 20px;
    }

    .footer-grid {
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cards,
    .testimonial-grid,
    .problem-grid,
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
}