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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-cookie.reject:hover {
    background: #ffffff;
    color: #000000;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
}

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

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

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

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-image-side {
    flex: 1;
    background: #34495e;
    position: relative;
    overflow: hidden;
}

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

.hero-content-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: #ecf0f1;
}

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

.hero-content-side p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #34495e;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.story-section {
    padding: 5rem 5%;
    background: #ffffff;
}

.story-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

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

.insight-section {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.insight-container {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.insight-image-left {
    flex: 1;
    background: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-text-right {
    flex: 1.2;
}

.insight-text-right h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.insight-text-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

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

.trust-content-centered {
    max-width: 1300px;
    margin: 0 auto;
}

.trust-content-centered h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #bdc3c7;
    font-weight: 600;
}

.services-reveal {
    padding: 6rem 5%;
    background: #ffffff;
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.2rem;
    color: #34495e;
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: stretch;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.service-visual {
    flex: 1;
    background: #95a5a6;
    min-height: 350px;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-service {
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 5%;
    background: #ecf0f1;
}

.form-split-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #34495e;
}

.form-right-form {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    font-size: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1.1rem;
    background: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.footer-split {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 4rem 5% 2rem;
}

.footer-columns {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
}

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

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

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

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #95a5a6;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 968px) {
    .hero-split,
    .story-split,
    .insight-container,
    .service-card,
    .form-split-container {
        flex-direction: column;
    }

    .hero-content-side {
        padding: 3rem;
    }

    .hero-content-side h1 {
        font-size: 2.5rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .services-split-grid {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content-side h1 {
        font-size: 2rem;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

    .story-text h2,
    .insight-text-right h2 {
        font-size: 1.8rem;
    }
}