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

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.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: 300px;
    margin: 0;
}

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

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

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

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

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background: #7f8c8d;
}

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 10px;
    background: #ecf0f1;
    border-radius: 3px;
}

.hero-story {
    position: relative;
    background-color: #34495e;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper 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(231,76,60,0.85), rgba(52,73,94,0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    max-width: 900px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 22px;
    color: #ffffff;
    max-width: 700px;
    font-weight: 300;
}

.story-intro {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.problem-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

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

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

.split-image img {
    width: 100%;
    height: 100%;
}

.insight-reveal {
    padding: 90px 40px;
    background: #ecf0f1;
}

.insight-reveal h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.insight-reveal > .narrow-content > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
}

.insight-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.insight-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.insight-card h3 {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.insight-card p {
    font-size: 16px;
    color: #555555;
    line-height: 1.7;
}

.insight-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.insight-card a:hover {
    text-decoration: underline;
}

.product-approach {
    padding: 100px 40px;
    background: #ffffff;
}

.offset-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.offset-content {
    flex: 1.2;
}

.offset-content h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.offset-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.8;
}

.offset-image {
    flex: 0.8;
    background-color: #bdc3c7;
    border-radius: 8px;
    overflow: hidden;
}

.offset-image img {
    width: 100%;
    height: 100%;
}

.testimonials-flow {
    padding: 90px 40px;
    background: #34495e;
}

.testimonials-flow h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
}

.testimonial-text {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #bdc3c7;
    font-weight: 600;
}

.services-preview {
    padding: 100px 40px;
    background: #f8f9fa;
}

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

.services-preview h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #555555;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ecf0f1;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    margin: 20px 20px 10px;
}

.service-card p {
    font-size: 15px;
    color: #555555;
    margin: 0 20px 15px;
    line-height: 1.6;
    flex: 1;
}

.price {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
    margin: 15px 20px;
}

.btn-select {
    background: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 14px 20px;
    margin: 0 20px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #c0392b;
}

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

.form-section h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > .narrow-content > p {
    font-size: 17px;
    color: #555555;
    text-align: center;
    margin-bottom: 40px;
}

.main-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

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

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

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

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

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

.trust-indicators {
    padding: 80px 40px;
    background: #ecf0f1;
}

.trust-indicators h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

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

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

.trust-item h3 {
    font-size: 22px;
    color: #e74c3c;
    margin-bottom: 15px;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background: #f39c12;
}

.disclaimer-text {
    font-size: 14px;
    color: #2c3e50;
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.references-section {
    padding: 60px 40px;
    background: #ffffff;
}

.references-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.references-list {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 10px;
}

.references-list a {
    color: #3498db;
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.main-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.thanks-section {
    padding: 100px 40px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-section h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-section p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 20px;
    max-width: 700px;
}

.thanks-section .service-name {
    font-weight: 700;
    color: #e74c3c;
}

.btn-home {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #c0392b;
}

.contact-info {
    padding: 80px 40px;
    background: #f8f9fa;
}

.contact-info h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
}

.info-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.info-item h3 {
    font-size: 22px;
    color: #e74c3c;
    margin-bottom: 15px;
}

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

.about-hero {
    padding: 100px 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    text-align: center;
    color: #ffffff;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 40px;
    background: #ffffff;
}

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

.about-content p {
    font-size: 17px;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-list {
    padding: 80px 40px;
    background: #f8f9fa;
}

.services-list h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

.legal-page h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-page h3 {
    font-size: 20px;
    color: #e74c3c;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .split-layout,
    .offset-layout {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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