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

.header-funnel {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #95a5a6;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px 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;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-visual {
    position: relative;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 900px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 700px;
    font-weight: 300;
}

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

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
}

.opening-statement {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.narrow-content p {
    margin-bottom: 1.5rem;
}

.insight-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.insight-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.problem-reveal {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.centered-block {
    max-width: 1100px;
    margin: 0 auto;
}

.centered-block h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.problem-card p {
    line-height: 1.7;
}

.solution-narrative {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.narrative-flow {
    max-width: 1000px;
    margin: 0 auto;
}

.narrative-image-top {
    margin-bottom: 3rem;
    background-color: #ecf0f1;
}

.narrative-image-top img {
    width: 100%;
    height: auto;
    display: block;
}

.narrative-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.narrative-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.testimonial-inline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-quote {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-left: 4px solid #3498db;
    border-radius: 5px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-quote cite {
    font-style: normal;
    font-weight: 600;
    color: #7f8c8d;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #f8f9fa;
}

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

.benefits-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.benefit-row {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefit-row.reverse {
    flex-direction: row-reverse;
}

.benefit-item {
    flex: 1;
}

.benefit-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.benefit-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.offer-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.offer-intro {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 4rem;
    color: #7f8c8d;
}

.service-cards-funnel {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-funnel {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card-funnel h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-description ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.cta-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-select:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}

.cta-select:active {
    transform: scale(0.98);
}

.form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-form {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 10px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

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

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

.form-note {
    font-size: 0.85rem;
    color: #bdc3c7;
    margin-top: 0.5rem;
}

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

.btn-submit:hover {
    background-color: #229954;
    transform: scale(1.02);
}

.btn-submit:active {
    transform: scale(0.98);
}

.final-reassurance {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.reassurance-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.reassurance-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    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: 220px;
}

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

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

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

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

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

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

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.about-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}

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

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.3rem;
}

.story-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.mission-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mission-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.mission-container > p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
}

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

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

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

.value-item p {
    line-height: 1.7;
}

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

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

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.approach-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
}

.team-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.team-image {
    background-color: #ecf0f1;
}

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

.cta-about {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-intro {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.services-intro-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-listing {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 0;
}

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

.service-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-info {
    flex: 1;
    padding: 3rem;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-summary {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-features {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.services-cta {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
}

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

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

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

.contact-item p {
    line-height: 1.7;
    color: #7f8c8d;
}

.email-display {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    font-size: 0.9rem;
    font-style: italic;
}

.help-list {
    padding-left: 1.5rem;
}

.help-list li {
    margin-bottom: 0.6rem;
}

.contact-visual {
    flex: 1;
    background-color: #ecf0f1;
}

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

.contact-cta {
    padding: 4rem 2rem;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.legal-content {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-update {
    color: #95a5a6;
    margin-bottom: 2rem;
    font-style: italic;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
    font-weight: 600;
}

.legal-container p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ecf0f1;
    padding: 1rem;
    text-align: left;
}

.cookie-table th {
    background-color: #34495e;
    color: #ffffff;
    font-weight: 600;
}

.cookie-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

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

    .split-insight,
    .story-layout,
    .benefit-row,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

    .benefit-row.reverse {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-disclosure {
        width: 100%;
        text-align: center;
    }

    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

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