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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    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;
    min-width: 300px;
}

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

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

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-label {
    background-color: #f39c12;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

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

.hero-visual {
    height: 580px;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(44,62,80,0.88) 0%, rgba(52,73,94,0.75) 100%);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
    max-width: 600px;
}

.btn-hero {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-hero:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

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

.services-showcase {
    padding: 70px 0;
    background-color: #ecf0f1;
}

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

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

.service-details {
    padding: 25px;
}

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

.service-details p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

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

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

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

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.selected-service-display {
    margin-bottom: 30px;
    padding: 15px;
    background-color: #e8f4f8;
    border-radius: 6px;
    color: #2c3e50;
}

.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 #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-primary {
    background-color: #27ae60;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

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

.trust-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

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

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

.trust-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

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

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    color: #bdc3c7;
    font-size: 14px;
}

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

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

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

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

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

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

.page-header h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
}

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

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

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

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

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

.about-text-block p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

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

.about-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.mission-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
}

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

.mission-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.team-approach {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.team-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

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

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

.team-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.services-detailed {
    padding: 60px 0;
    background-color: #fafafa;
}

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

.service-detail-visual {
    flex: 1;
    min-width: 300px;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
}

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

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

.service-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.service-includes ul {
    list-style: none;
    margin-bottom: 25px;
}

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

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

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

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

.contact-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

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

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

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

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

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

.email-display {
    color: #555;
}

.contact-image-block {
    flex: 1;
    min-width: 300px;
}

.contact-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

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

.contact-note p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

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

.thanks-section .container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

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

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #27ae60;
}

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

.service-confirmation {
    background-color: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.thanks-visual {
    flex: 1;
    min-width: 300px;
}

.thanks-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.legal-page {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

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

.legal-section p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

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

.legal-section ul li {
    margin-bottom: 8px;
    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 #ddd;
}

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .service-cards-layout {
        flex-direction: column;
    }

    .service-card {
        max-width: 100%;
    }

    .trust-content,
    .about-layout,
    .team-approach,
    .contact-layout {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .thanks-section .container {
        flex-direction: column;
    }
}
