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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

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

.hero-visual {
    margin-top: 80px;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f8f9fa;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

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

.hero-subtitle {
    font-size: 22px;
    color: #ecf0f1;
    margin-bottom: 35px;
    max-width: 700px;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-hero:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.story-intro {
    padding: 100px 20px;
    max-width: 750px;
    margin: 0 auto;
}

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

.story-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.insight-visual {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.insight-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.insight-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #34495e;
    line-height: 1.7;
}

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

.trust-markers {
    padding: 90px 20px;
}

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

.trust-card {
    flex: 1;
    padding: 40px 30px;
    background-color: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    text-align: center;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.trust-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
}

.testimonial-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.testimonial-item {
    padding: 35px 40px;
    background-color: #ffffff;
    border-left: 5px solid #e74c3c;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

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

.benefits-reveal {
    padding: 100px 20px;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.benefits-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.benefit-visual {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

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

.benefit-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.services-pricing {
    padding: 100px 20px;
    background-color: #ffffff;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
    align-items: center;
}

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

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

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
    margin: 20px 0;
}

.btn-select-service {
    padding: 14px 35px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-select-service:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #ecf0f1, #f8f9fa);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.consultation-form {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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 select {
    width: 100%;
    padding: 14px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

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

.final-cta {
    padding: 80px 20px;
    background-color: #2c3e50;
    text-align: center;
}

.final-cta-content h3 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    color: #ecf0f1;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-secondary:hover {
    background-color: #ecf0f1;
    transform: translateY(-2px);
}

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #e74c3c;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 8px;
}

.footer-references h5 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    font-size: 13px;
    color: #bdc3c7;
    margin-bottom: 6px;
    line-height: 1.6;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #2c3e50;
    border-radius: 8px;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

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

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-floating {
        width: 95%;
        padding: 12px 20px;
    }

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

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

    .hero-title {
        font-size: 36px;
    }

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

    .insight-wrapper,
    .benefits-grid,
    .service-card,
    .footer-content {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}