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

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #ddd;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

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

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 3rem;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
}

.hero-overlay h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtext {
    font-size: 1.3rem;
    line-height: 1.6;
    font-weight: 300;
}

.story-section {
    max-width: 750px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-content p {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    color: #444;
}

.story-image-wrapper {
    margin: 3rem 0;
}

.story-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
}

.problem-section {
    background-color: #fafafa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.problem-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-text {
    flex: 1;
}

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

.problem-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
}

.problem-visual {
    flex: 0 0 380px;
}

.problem-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.insight-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.insight-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.insight-wrapper > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    color: #555;
}

.insight-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #d4634a;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.insight-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

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

.trust-content {
    max-width: 850px;
    margin: 0 auto;
}

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

.trust-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
    line-height: 1.8;
}

.citation {
    color: #d4634a;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.testimonial-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.testimonial-container h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a1a1a;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 0.95rem;
    color: #888;
    font-style: normal;
}

.benefits-section {
    background-color: #fafafa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.benefits-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.benefits-image {
    flex: 0 0 420px;
    width: 420px;
    height: auto;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.benefits-content {
    flex: 1;
}

.benefits-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    padding-left: 2rem;
    position: relative;
    color: #444;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4634a;
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-soft {
    max-width: 800px;
    margin: 6rem auto;
    padding: 3.5rem 2rem;
    background-color: #f9f7f4;
    border-radius: 8px;
    text-align: center;
}

.cta-soft-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-soft-content p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.services-overview {
    max-width: 1200px;
    margin: 7rem auto;
    padding: 0 2rem;
}

.services-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
}

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

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

.service-image-wrapper {
    flex: 0 0 380px;
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8e8e8;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-details p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4634a;
    margin-bottom: 1.2rem;
}

.service-select-btn {
    background-color: #d4634a;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select-btn:hover {
    background-color: #c1563f;
}

.form-section {
    background-color: #f5f5f5;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

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

.form-container h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #ffffff;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    background-color: #fef9f5;
    padding: 3rem 2rem;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #2a2a2a;
    color: #cccccc;
    padding: 3.5rem 2rem 1.5rem;
}

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.references-list {
    padding-left: 1.2rem;
}

.references-list li {
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

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

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

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

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.page-header {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
}

.about-content {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 0 0 420px;
    width: 420px;
    height: auto;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.mission-section {
    background-color: #fafafa;
    padding: 3.5rem;
    border-radius: 8px;
    margin-bottom: 4rem;
}

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

.mission-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.team-section {
    margin-bottom: 4rem;
}

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

.team-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.services-page-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro-text p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card-image {
    flex: 0 0 380px;
    width: 380px;
    height: 100%;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card-content {
    flex: 1;
    padding: 2.5rem;
}

.service-card-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4634a;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4634a;
}

.services-cta-section {
    background-color: #f5f5f5;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 4rem;
}

.services-cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.cta-link-btn:hover {
    background-color: #c1563f;
}

.contact-page-content {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
}

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.email-display {
    color: #555;
    font-family: monospace;
}

.contact-image-wrapper {
    flex: 0 0 420px;
}

.contact-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #e8e8e8;
    object-fit: cover;
}

.contact-additional {
    background-color: #fafafa;
    padding: 3rem;
    border-radius: 8px;
}

.contact-additional h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.thanks-content {
    background-color: #fafafa;
    padding: 4rem;
    border-radius: 8px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #d4634a;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

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

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

.steps-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.btn-secondary {
    background-color: #666;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.last-updated {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #d4634a;
    text-decoration: none;
}

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

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

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .problem-container,
    .about-wrapper,
    .benefits-wrapper,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-detail-card {
        flex-direction: column;
    }

    .service-image,
    .service-card-image,
    .about-image,
    .benefits-image,
    .contact-image {
        width: 100%;
        flex: 1;
    }

    .insight-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}