* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    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;
    margin: 0;
    min-width: 300px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

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

.cookie-reject {
    background: #7f8c8d;
    color: #fff;
}

.cookie-reject:hover {
    background: #6c7a7b;
}

.header {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.main-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 5px 10px;
    border: 1px solid #34495e;
    border-radius: 3px;
}

.hero-card {
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    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(26,26,26,0.85) 0%, rgba(52,73,94,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
}

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

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

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 400;
}

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

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

.split-card-layout {
    display: flex;
    gap: 40px;
    align-items: center;
}

.card-left {
    flex: 1;
    background-color: #34495e;
}

.card-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-right {
    flex: 1;
    padding: 20px;
}

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

.card-right p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
}

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

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

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

.card-image {
    height: 250px;
    overflow: hidden;
    background-color: #95a5a6;
}

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

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

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

.card-body p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #666;
    flex: 1;
}

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

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

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3498db;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #ecf0f1;
}

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

.testimonials-inline h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
}

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

.testimonial-author {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: bold;
}

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

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.cta-card > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: #555;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    background: #fff;
}

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

.form-group input[readonly] {
    background: #fff;
    color: #27ae60;
    font-weight: bold;
}

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

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

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #e74c3c;
}

.disclaimer-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e74c3c;
}

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

.footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-col a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

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

.about-layout.reverse {
    flex-direction: row-reverse;
}

.about-text-block {
    flex: 1;
}

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

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

.about-image-block {
    flex: 1;
    background-color: #95a5a6;
}

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

.values-section {
    margin-top: 80px;
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #3498db;
}

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

.workshop-section {
    margin-top: 80px;
    padding: 50px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.workshop-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.service-detail-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.service-detail-header {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: #ecf0f1;
}

.service-detail-header img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #95a5a6;
}

.service-detail-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-price {
    font-size: 26px;
    font-weight: bold;
    color: #27ae60;
}

.service-detail-body {
    padding: 30px;
}

.service-detail-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

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

.service-detail-body ul {
    list-style: none;
    padding: 0;
}

.service-detail-body ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #555;
}

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

.cta-services {
    padding: 80px 0;
    background: #2c3e50;
    color: #fff;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    transition: background 0.3s;
}

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

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

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

.contact-info-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

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

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

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

.contact-item .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-map-card {
    flex: 1;
    background-color: #95a5a6;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.info-notice {
    margin-top: 50px;
    padding: 30px;
    background: #fff3cd;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

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

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

.thanks-section {
    padding: 100px 0;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

.thanks-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-content {
    text-align: left;
    margin-bottom: 40px;
}

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

.service-confirmation {
    background: #ecf0f1;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    display: none;
}

.service-confirmation p {
    margin-bottom: 10px;
}

.next-steps {
    margin-top: 40px;
}

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

.next-steps ol {
    text-align: left;
    padding-left: 20px;
}

.next-steps ol li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.thanks-info {
    background: #fff3cd;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

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

.thanks-info p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-block;
}

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

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

.btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.btn-secondary:hover {
    background: #bdc3c7;
}

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

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

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

.legal-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.legal-section h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #3498db;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.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: #34495e;
    color: #fff;
    font-weight: 600;
}

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

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

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

    .split-card-layout {
        flex-direction: column;
    }

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

    .trust-cards,
    .testimonial-grid {
        flex-direction: column;
    }

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

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

    .service-detail-header img {
        width: 100%;
        height: 250px;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}