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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 10px;
    background-color: #ecf0f1;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

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

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

.hero-section {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,73,94,0.85), rgba(44,62,80,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.7;
}

.intro-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.intro-card {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.intro-card.highlight {
    background-color: #ecf0f1;
    border-left: 5px solid #3498db;
}

.intro-card h2, .intro-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.intro-card p {
    color: #5a6c7d;
    margin-bottom: 12px;
}

.story-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.story-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.story-card img {
    flex: 1;
    min-width: 350px;
    height: 400px;
    object-fit: cover;
    background-color: #bdc3c7;
}

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

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

.story-content p {
    margin-bottom: 18px;
    color: #5a6c7d;
    font-size: 17px;
}

.insight-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.insight-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.insight-card h3 {
    margin-bottom: 12px;
    color: #2c3e50;
}

.insight-card p {
    color: #5a6c7d;
}

.trust-section {
    padding: 60px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

.testimonial-author {
    color: #ecf0f1;
    font-weight: 600;
    font-size: 14px;
}

.services-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #5a6c7d;
    font-size: 18px;
}

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

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

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

.form-section {
    padding: 70px 0;
    background-color: #ffffff;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #5a6c7d;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
}

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

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

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

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

.about-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

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

.about-card img {
    flex: 1;
    min-width: 350px;
    height: 400px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.about-content p {
    margin-bottom: 18px;
    color: #5a6c7d;
    font-size: 17px;
}

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

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

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

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

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

.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: #ffffff;
}

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

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    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 {
    color: #95a5a6;
    font-size: 14px;
}

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

.thanks-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.thanks-message {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.service-confirmation p {
    color: #2c3e50;
    font-size: 16px;
}

.thanks-note {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.btn-back {
    display: inline-block;
    padding: 14px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 20px;
}

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

.content-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.content-card img {
    flex: 1;
    min-width: 350px;
    height: 400px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

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

.text-content p {
    margin-bottom: 18px;
    color: #5a6c7d;
    font-size: 17px;
}

.values-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.value-card {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.value-card h3 {
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.6;
}

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

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

.process-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #ecf0f1;
    margin-bottom: 10px;
}

.process-step h3 {
    margin-bottom: 12px;
    color: #2c3e50;
}

.process-step p {
    color: #5a6c7d;
    line-height: 1.6;
}

.mission-card {
    padding: 40px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.mission-card h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

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

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

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

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

.service-detail-card img {
    flex: 1;
    min-width: 350px;
    height: 400px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.service-detail-content h2 {
    margin-bottom: 15px;
    font-size: 30px;
    color: #2c3e50;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.7;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    padding: 14px 30px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-section {
    padding: 70px 0;
    background-color: #ecf0f1;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.cta-card h2 {
    margin-bottom: 15px;
    font-size: 36px;
}

.cta-card p {
    margin-bottom: 30px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

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

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

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

.contact-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

.contact-message-card p {
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-message-card a {
    color: #3498db;
    font-weight: 600;
}

.location-note {
    margin-top: 50px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-note h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.location-note p {
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.last-updated {
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #34495e;
}

.legal-section p {
    margin-bottom: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

.legal-section ul li {
    margin-bottom: 10px;
    color: #5a6c7d;
    line-height: 1.6;
}

.legal-section a {
    color: #3498db;
    font-weight: 600;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cookie-table thead {
    background-color: #34495e;
    color: #ffffff;
}

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

.cookie-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

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

    .card-grid,
    .insight-grid,
    .testimonial-grid,
    .services-grid {
        flex-direction: column;
    }

    .story-card,
    .about-card,
    .content-card,
    .service-detail-card {
        flex-direction: column;
    }

    .story-card img,
    .about-card img,
    .content-card img,
    .service-detail-card img {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

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

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