* {
    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;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    border: 1px solid #dfe4ea;
    border-radius: 4px;
    background-color: #f8f9fa;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

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

.cookie-link {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 4rem 4rem 6rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

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

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

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stories-grid {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.story-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.story-card.left {
    flex-direction: row;
}

.story-card.right {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 400px;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.story-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-quote {
    font-style: italic;
    color: #3498db;
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

.cta-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #ecf0f1;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #7f8c8d;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #2c3e50;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.5);
}

.insights-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.insights-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-align: center;
}

.insight-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.insight-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

.insight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.insight-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.link-arrow {
    display: inline-block;
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.link-arrow:hover {
    color: #2980b9;
    transform: translateX(5px);
}

.link-arrow::after {
    content: " →";
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.footer-column p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 3rem 2rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .story-card {
        flex-direction: column !important;
    }

    .story-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .insight-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}