* {
    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.6;
    color: #333;
    background-color: #fff;
}

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

.header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav {
    display: flex;
    gap: 30px;
}

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

.nav a:hover {
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    background-color: #f8f9fa;
    padding: 5px 12px;
    border-radius: 4px;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: #fff;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.95;
}

.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.intro-card p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.problem-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 8px;
}

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

.insight-card p {
    color: #555;
    line-height: 1.7;
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.trust-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-icon {
    font-size: 32px;
    color: #27ae60;
    margin-bottom: 15px;
}

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

.trust-card p {
    color: #555;
    line-height: 1.7;
}

.testimonials-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.btn-service {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s;
}

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

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.form-card > p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 12px;
    background-color: #e8f4f8;
    border-radius: 5px;
    color: #2c3e50;
    font-weight: 500;
}

.btn-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 17px;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fef5e7;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.disclaimer-card p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

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

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

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s;
}

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

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

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

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

.page-hero {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
}

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

.about-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    border-radius: 8px;
}

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

.value-card p {
    color: #555;
    line-height: 1.7;
}

.process-section {
    margin-bottom: 80px;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.process-card {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.process-card p {
    color: #555;
    line-height: 1.7;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.team-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.team-image {
    width: 100%;
    height: 400px;
    margin: 0 auto;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.services-detail {
    padding: 80px 0;
}

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

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

.contact-detail p {
    color: #555;
    line-height: 1.7;
}

.contact-message-card {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.contact-message-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-note ul {
    list-style: none;
    padding-left: 0;
}

.contact-note ul li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.location-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.8;
}

.location-image {
    width: 100%;
    height: 400px;
}

.location-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 50px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

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

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    margin-bottom: 30px;
}

.selected-service-confirm {
    background-color: #e8f4f8;
    padding: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-info {
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

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

.thanks-next h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next ol li {
    margin-bottom: 12px;
    color: #555;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

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

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

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

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

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-updated {
    color: #888;
    margin-bottom: 40px;
    font-size: 14px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li,
.legal-content ol li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

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

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

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

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

    .hero-text p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .intro-card h2,
    .about-text h2,
    .story-content h2 {
        font-size: 26px;
    }

    .nav {
        gap: 15px;
    }

    .card-grid,
    .trust-grid,
    .testimonial-cards,
    .services-cards,
    .values-grid,
    .process-cards {
        flex-direction: column;
    }

    .story-layout,
    .about-layout,
    .contact-layout {
        flex-direction: column;
    }

    .form-card {
        padding: 30px 20px;
    }

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

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

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