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

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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-card {
    margin-bottom: 40px;
}

.hero-content {
    position: relative;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    padding: 60px 40px 40px;
    color: #ffffff;
}

.hero-text-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text-overlay p {
    font-size: 18px;
    max-width: 700px;
    opacity: 0.95;
}

.intro-cards {
    padding: 60px 0;
}

.card-grid-intro {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.story-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.story-card p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.visual-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.insight-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.insight-card-main {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.insight-card-main h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.insight-card-main p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.insight-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.insight-item {
    flex: 1;
    min-width: 250px;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.insight-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.insight-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.problem-section {
    padding: 70px 0;
}

.card-grid-alt {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.problem-visual {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

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

.problem-text {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.problem-text h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.problem-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.trust-section {
    padding: 80px 0;
    background-color: #34495e;
    color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.benefits-reveal {
    padding: 80px 0;
}

.benefits-card-featured {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.benefits-card-featured h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefits-card-featured p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.service-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 18px;
}

.select-service-btn {
    width: 100%;
    padding: 14px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.form-card-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.form-intro-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: #34495e;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro-card h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.form-intro-card p {
    font-size: 16px;
    line-height: 1.7;
}

.form-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

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

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    background-color: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px 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;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header-card {
    padding: 80px 0 40px;
    text-align: center;
}

.page-header-card h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-header-card p {
    font-size: 18px;
    color: #555;
}

.about-content {
    padding: 60px 0;
}

.about-card-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-main-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.about-main-card h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-main-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-visual-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

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

.values-cards {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
}

.philosophy-card {
    background-color: #ecf0f1;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.philosophy-card h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.commitment-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.commitment-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.commitment-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.commitment-item p {
    font-size: 15px;
    line-height: 1.6;
}

.services-content {
    padding: 60px 0;
}

.cta-card-centered {
    margin-top: 60px;
    text-align: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cta-card-centered h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.cta-card-centered p {
    font-size: 17px;
    margin-bottom: 28px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

.contact-content {
    padding: 60px 0;
}

.contact-card-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 28px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-message-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-message-card h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ecf0f1;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-cta-card {
    background-color: #34495e;
    color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.contact-cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-cta-card p {
    font-size: 17px;
    margin-bottom: 28px;
}

.thanks-section {
    padding: 100px 0;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.thanks-next-steps {
    background-color: #ecf0f1;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #3498db;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.legal-content {
    padding: 60px 0;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

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

.legal-card h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-card ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

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

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-controls {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

    .nav-links {
        gap: 20px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-card {
        padding: 40px 30px;
    }
}