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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

.nav-links a:hover {
    color: #27ae60;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 12px;
}

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 40px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
}

.story-intro {
    padding: 100px 40px;
    background-color: #ecf0f1;
}

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

.opening-line {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #2c3e50;
}

.story-narrow p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #34495e;
}

.problem-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.content-offset-left {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-column {
    flex: 1;
}

.text-column h2 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.text-column p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.image-column {
    flex: 1;
    background-color: #95a5a6;
}

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

.insight-section {
    padding: 100px 40px;
    background-color: #2c3e50;
    color: #ffffff;
}

.full-width-card {
    max-width: 1200px;
    margin: 0 auto;
}

.full-width-card h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

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

.insight-item {
    flex: 1;
    min-width: 280px;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.7;
}

.solution-reveal {
    padding: 120px 40px;
    background-color: #ecf0f1;
}

.solution-reveal h2 {
    font-size: 38px;
    margin-bottom: 32px;
    text-align: center;
}

.solution-reveal p {
    font-size: 19px;
    margin-bottom: 24px;
    color: #34495e;
}

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

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-card {
    padding: 40px;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
}

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

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

.benefits-section {
    padding: 120px 40px;
    background-color: #ecf0f1;
}

.alternating-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.benefit-block.right {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-text p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.7;
}

.services-preview {
    padding: 120px 40px;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 19px;
    color: #34495e;
}

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

.service-card {
    flex: 1;
    min-width: 260px;
    background-color: #f8f9fa;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

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

.service-card p {
    font-size: 16px;
    margin: 0 24px 12px;
    color: #34495e;
}

.service-note {
    font-weight: 600;
    color: #27ae60;
    margin: 0 24px 24px;
}

.cta-section-inline {
    padding: 80px 40px;
    background-color: #27ae60;
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-card-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-card-centered p {
    font-size: 20px;
    margin-bottom: 32px;
}

.cta-button {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    background-color: #ffffff;
    color: #27ae60;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 4px;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 32px;
    color: #34495e;
}

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

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

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

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

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

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

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

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
}

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

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #27ae60;
}

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .content-offset-left {
        flex-direction: column;
    }

    .benefit-block {
        flex-direction: column;
    }

    .benefit-block.right {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }
}