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

.ad-disclosure {
    background: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #f5d896;
}

.nav-floating {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a3a52;
}

.nav-links {
    display: flex;
    gap: 28px;
}

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

.nav-links a:hover {
    color: #2c7a7b;
}

.hero-full {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a3a52;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 24px;
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

.story-section {
    background: #f8f9fa;
    padding: 100px 24px;
}

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

.content-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.story-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #1a3a52;
}

.story-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.image-text-split {
    padding: 100px 24px;
    background: white;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a3a52;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
}

.problem-block {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7e 100%);
    padding: 100px 24px;
    color: white;
}

.problem-block h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: white;
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.problem-item {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: 8px;
}

.problem-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #a8dadc;
}

.problem-item p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.testimonial-inline {
    padding: 80px 24px;
    background: #fafbfc;
}

.testimonial-inline blockquote {
    border-left: 4px solid #2c7a7b;
    padding-left: 32px;
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
    color: #495057;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: #1a3a52;
}

.insight-section {
    padding: 100px 24px;
    background: white;
}

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #1a3a52;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
}

.insight-section img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #e9ecef;
    object-fit: cover;
}

.trust-markers {
    background: #f1f8f9;
    padding: 80px 24px;
}

.trust-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.trust-card {
    flex: 1;
    max-width: 320px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a3a52;
}

.trust-card p {
    font-size: 15px;
    color: #6c757d;
}

.services-reveal {
    padding: 100px 24px;
    background: white;
}

.services-reveal h2 {
    font-size: 40px;
    margin-bottom: 24px;
    text-align: center;
    color: #1a3a52;
}

.services-reveal > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #6c757d;
}

.services-cards {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    background: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    background: linear-gradient(135deg, #2c7a7b 0%, #1a5f5f 100%);
    color: white;
    border-color: #2c7a7b;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a3a52;
}

.service-card.featured h3 {
    color: white;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 24px;
    color: #495057;
    line-height: 1.6;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c7a7b;
}

.service-card.featured .price {
    color: white;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background: #2c7a7b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1a5f5f;
}

.service-card.featured .btn-select {
    background: white;
    color: #2c7a7b;
}

.service-card.featured .btn-select:hover {
    background: #f8f9fa;
}

.form-section {
    padding: 100px 24px;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a3a52;
}

.form-section > .content-narrow > p {
    margin-bottom: 40px;
    font-size: 17px;
    color: #6c757d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2c7a7b 0%, #1a5f5f 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
}

.final-trust {
    padding: 60px 24px;
    background: white;
}

.final-trust h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.final-trust p {
    font-size: 17px;
    color: #495057;
}

.disclaimer-section {
    padding: 60px 24px;
    background: #fafbfc;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    border-left: 3px solid #dee2e6;
    padding-left: 20px;
}

.site-footer {
    background: #1a3a52;
    color: white;
    padding: 60px 24px 24px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #495057;
}

.cookie-content a {
    color: #2c7a7b;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2c7a7b;
    color: white;
}

.btn-accept:hover {
    background: #1a5f5f;
}

.btn-reject {
    background: #e9ecef;
    color: #495057;
}

.btn-reject:hover {
    background: #dee2e6;
}

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

    .split-container {
        flex-direction: column;
        gap: 32px;
    }

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

    .trust-grid {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }
}

.page-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7e 100%);
    color: white;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    padding: 80px 24px;
    background: white;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c5f7e;
}

.page-content p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 24px;
    margin-left: 32px;
}

.page-content ul li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #495057;
}

.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-top: 32px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a3a52;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 16px;
}

.thanks-message {
    text-align: center;
    padding: 100px 24px;
}

.thanks-message h1 {
    font-size: 48px;
    color: #2c7a7b;
    margin-bottom: 24px;
}

.thanks-message p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 16px;
}

.thanks-actions {
    margin-top: 48px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2c7a7b;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1a5f5f;
}