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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
}

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

.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 11px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 4px;
    order: 3;
    flex-basis: 100%;
    text-align: center;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.hero {
    margin-top: 0;
}

.hero-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    padding: 80px 0;
    color: var(--white);
}

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

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-select {
    background: var(--accent-color);
    color: var(--white);
    width: 100%;
}

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

.intro-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin: 15px 0;
}

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.form-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.selected-service-info {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 250px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    color: #666;
    line-height: 1.8;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1 1 250px;
}

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

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

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

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1 1 400px;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

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

.page-header {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 18px;
    color: #666;
}

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

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

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 400px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    flex: 1 1 400px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

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

.values-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.process-step {
    flex: 1 1 200px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.cta-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.cta-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

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

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

.contact-info {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-detail {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-detail p {
    color: #666;
    line-height: 1.6;
}

.email-text {
    color: var(--text-color);
    font-weight: 600;
}

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

.info-section {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.info-card {
    flex: 1 1 400px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

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

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.order-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 5px;
    margin: 30px 0;
    text-align: left;
}

.order-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.order-details p {
    margin-bottom: 10px;
    color: var(--text-color);
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #666;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

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

.legal-page {
    padding: 60px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-update {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #666;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .card {
        flex: 1 1 100%;
    }

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

    .trust-item {
        flex: 1 1 100%;
    }

    .process-step {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

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

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

    .legal-content {
        padding: 30px 20px;
    }

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

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