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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: 20px;
    z-index: 9999;
    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;
    min-width: 250px;
}

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

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

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

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

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

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

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

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

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 20px;
}

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

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

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

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

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

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.8;
}

.opening-line {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #34495e;
}

.narrow-content p {
    margin-bottom: 25px;
}

.visual-break {
    height: 70vh;
    background: #34495e;
}

.visual-break img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-section {
    padding: 120px 20px;
    background: #ffffff;
}

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

.insight-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-box {
    background: #ecf0f1;
    padding: 30px;
    margin: 40px 0;
    border-left: 4px solid #3498db;
}

.highlight-box p {
    font-size: 19px;
    font-style: italic;
    margin: 0;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 400;
}

.services-header p {
    font-size: 19px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 15px);
    max-width: 550px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 280px;
    overflow: hidden;
    background: #ecf0f1;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    font-weight: 500;
}

.service-card > p {
    padding: 0 25px;
    color: #7f8c8d;
    font-size: 16px;
    margin-bottom: 20px;
}

.service-price {
    padding: 0 25px;
    font-size: 32px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-btn {
    margin: 0 25px 25px;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

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

.service-card.selected {
    border: 3px solid #27ae60;
}

.testimonial-flow {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonial-block {
    display: flex;
    max-width: 1100px;
    margin: 0 auto 60px;
    gap: 40px;
    align-items: center;
}

.testimonial-block.reverse {
    flex-direction: row-reverse;
}

.testimonial-image {
    flex: 1;
    height: 400px;
    background: #ecf0f1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-content {
    flex: 1;
    padding: 20px;
}

blockquote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
}

cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-intro {
    color: #7f8c8d;
    margin-bottom: 35px;
    font-size: 17px;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-field input[readonly] {
    background: #f8f9fa;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: white;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 400;
}

.trust-points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

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

.trust-item p {
    font-size: 18px;
    line-height: 1.6;
}

.main-footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

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

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

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

.footer-column p,
.footer-column a {
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-column a {
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #4a5f7f;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.thanks-container {
    background: white;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
}

.thanks-container h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #2980b9;
}

.legal-page {
    padding: 140px 20px 80px;
    min-height: 100vh;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .floating-nav {
        top: 10px;
        padding: 12px 20px;
        border-radius: 30px;
    }

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

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

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

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

    .service-card {
        width: 100%;
    }

    .testimonial-block,
    .testimonial-block.reverse {
        flex-direction: column;
    }

    .form-container {
        padding: 35px 25px;
    }

    .footer-content {
        flex-direction: column;
    }
}