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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.85rem;
    color: #718096;
    padding: 0.3rem 0.8rem;
    background-color: #edf2f7;
    border-radius: 4px;
}

.hero-full {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

.hero-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.85), rgba(66, 153, 225, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.hero-text-center {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
}

.hero-text-center h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 400;
    opacity: 0.95;
}

.story-intro {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

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

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.problem-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.text-column-left {
    flex: 1;
}

.text-column-right {
    flex: 1;
}

.image-column-left {
    flex: 1;
}

.image-column-right {
    flex: 1;
}

.image-column-left img,
.image-column-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.problem-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    color: #1a202c;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: #4a5568;
}

.problem-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e53e3e;
    font-weight: 700;
}

.emphasis-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 1.5rem;
}

.solution-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
}

.centered-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.solution-reveal p {
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    color: #2d3748;
}

.benefits-grid {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.benefits-cards {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f7fafc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.benefit-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

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

.benefit-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a202c;
}

.benefit-card p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    font-size: 1rem;
}

.testimonials-flow {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.testimonial-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #4299e1;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 600;
}

.trust-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.text-link {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.text-link:hover {
    border-bottom-color: #2b6cb0;
}

.services-pricing {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fefcbf, #faf089);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.03);
}

.service-item.featured {
    border: 3px solid #4299e1;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #4299e1;
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #2b6cb0;
    margin: 1.5rem 0;
}

.btn-select-service {
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.btn-submit {
    width: 100%;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #c3dafe, #a3bffa);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.final-cta p {
    font-size: 1.2rem;
    color: #2d3748;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #f7fafc;
}

.disclaimer-text {
    font-size: 0.92rem;
    color: #718096;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: #4a5568;
}

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.about-story h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.about-story p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2b6cb0;
}

.value-item p {
    font-size: 1rem;
    color: #4a5568;
}

.team-approach {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.team-approach h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.team-approach p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.mission-statement {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #fefcbf, #faf089);
}

.mission-statement h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.mission-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.mission-statement p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

.service-description {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    font-size: 1rem;
    color: #4a5568;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2b6cb0;
    margin: 1.5rem 0;
}

.btn-secondary {
    display: inline-block;
    background-color: #4299e1;
    color: #ffffff;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #2b6cb0;
}

.additional-services {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.additional-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.additional-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.additional-item p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.additional-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

.comparison-note {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.comparison-note h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.comparison-note p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-columns {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-column {
    flex: 1;
    min-width: 300px;
}

.contact-column h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2b6cb0;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
}

.contact-column p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: #f7fafc;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a202c;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding: 1.8rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f7fafc;
    min-height: 70vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2b6cb0;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: #2d3748;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2c5282;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.next-steps ol {
    padding-left: 1.5rem;
}

.next-steps ol li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.thanks-note {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 2rem;
}

.legal-page {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.legal-intro {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    font-weight: 500;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.2rem;
    color: #2d3748;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 1rem;
    color: #4a5568;
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a5568;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1.3rem 0 1.8rem 2rem;
}

.legal-page ul li {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.legal-page a {
    color: #2b6cb0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-page a:hover {
    border-bottom-color: #2b6cb0;
}

.legal-update {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 3rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-text-center h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        flex-direction: column;
    }

    .benefits-cards,
    .service-grid,
    .values-grid,
    .additional-grid {
        flex-direction: column;
    }

    .contact-columns {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}