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

.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;
}

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

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

.navbar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 15px;
    background-color: #ecf0f1;
    border-radius: 3px;
    margin: 5px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 25px;
}

.hero-overlay p {
    font-size: 22px;
    line-height: 1.7;
    max-width: 600px;
    font-weight: 300;
}

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

.content-narrow {
    max-width: 750px;
    margin: 0 auto;
}

.content-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.story-intro h2 {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 35px;
    color: #2c3e50;
    font-weight: 700;
}

.story-intro p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #34495e;
}

.visual-break {
    padding: 0;
}

.split-image-text {
    display: flex;
    min-height: 600px;
}

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

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

.text-side {
    flex: 1;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-side h3 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-side p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 30px;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 700;
}

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

.insight-card {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.insight-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.insight-card h4 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 600;
}

.insight-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 25px;
    color: #34495e;
}

.testimonial-flow {
    padding: 90px 30px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.testimonial {
    background-color: rgba(255,255,255,0.95);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 6px;
    border-left: 4px solid #2c3e50;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
    font-weight: 600;
}

.services-reveal {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.services-reveal h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.section-intro {
    font-size: 20px;
    color: #34495e;
    margin-bottom: 60px;
}

.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    min-width: 400px;
    background-color: #95a5a6;
}

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

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

.service-details h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 30px;
}

.price {
    font-size: 36px;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 25px;
}

.select-service {
    padding: 15px 35px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.select-service.selected {
    background-color: #27ae60;
}

.form-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.form-section > .content-narrow > p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.service-warning {
    background-color: #fff3cd;
    color: #856404;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
    border-left: 4px solid #ffc107;
}

.service-warning.show {
    display: block;
}

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

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.trust-footer {
    padding: 80px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-elements {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.trust-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
}

@media (max-width: 968px) {
    .hero-overlay h1 {
        font-size: 38px;
    }

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

    .split-image-text {
        flex-direction: column;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-visual {
        min-width: 100%;
        height: 300px;
    }

    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-overlay {
        padding: 30px;
    }

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

    .story-intro h2,
    .services-reveal h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}