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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 4px 8px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

.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;
}

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

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

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

.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 Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-section 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(41, 128, 185, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 1.25rem;
    color: #ecf0f1;
    max-width: 600px;
}

/* Intro Section */
.intro-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

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

.intro-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
}

/* Services Grid - Card Based UI */
.services-grid {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

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

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

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    color: #34495e;
    margin-bottom: 20px;
    flex: 1;
}

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

.select-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Form Section */
.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background-color: #34495e;
    color: #ffffff;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffffff;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 280px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3498db;
}

.benefit-card p {
    color: #ecf0f1;
    line-height: 1.8;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.8;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.footer-column h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-column p {
    color: #95a5a6;
    font-size: 0.9rem;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

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

.page-header p {
    font-size: 1.25rem;
    color: #ecf0f1;
}

/* About Content */
.about-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.about-card-large {
    width: 100%;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.card-text {
    padding: 40px;
}

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

.card-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #34495e;
}

.about-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-card p {
    color: #34495e;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

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

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

.value-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: calc(25% - 23px);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #3498db;
}

.value-item p {
    color: #34495e;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.process-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    width: calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 15px;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.process-card p {
    color: #34495e;
    line-height: 1.6;
}

/* Services Detail */
.services-detail {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    align-items: center;
}

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

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

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

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

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

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

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #34495e;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
}

.cta-card-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-card-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-card-centered p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ecf0f1;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    margin-right: 15px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

.contact-info-card p {
    margin-bottom: 30px;
    color: #34495e;
    line-height: 1.8;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-value {
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-note a {
    color: #3498db;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background-color: #bdc3c7;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    width: calc(50% - 15px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.faq-item p {
    color: #34495e;
    line-height: 1.8;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 12px;
}

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

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

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #34495e;
}

.selected-service-display {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.steps-list {
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 15px;
    color: #34495e;
    line-height: 1.8;
}

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

/* Legal Pages */
.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.last-updated {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
    text-align: center;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #34495e;
}

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

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: #34495e;
}

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

.legal-content 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-bottom: 1px solid #ecf0f1;
}

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

.cookie-table td {
    color: #34495e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

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

    .hero-overlay p {
        font-size: 1rem;
    }

    .service-card {
        width: 100%;
    }

    .about-card,
    .value-item,
    .process-card,
    .benefit-card,
    .faq-item {
        width: 100%;
    }

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

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

    .service-detail-card img {
        width: 100%;
        height: 300px;
    }

    .contact-layout {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}