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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

.cookie-content a {
    color: #6eb6ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background: #28a745;
    color: #fff;
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: #6c757d;
    color: #fff;
}

.btn-reject:hover {
    background: #5a6268;
}

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #c62828;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #c62828;
}

.hero {
    margin-bottom: 60px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

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

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

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

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

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

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

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.story-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #222;
}

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

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

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
}

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

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

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #c62828;
    margin-bottom: 20px;
}

.btn-primary {
    background: #c62828;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #a32020;
}

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

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

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

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

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

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

.testimonial-author {
    font-weight: 600;
    color: #c62828;
}

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

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #e65100;
}

.disclaimer-box p {
    color: #555;
    line-height: 1.7;
}

.footer {
    background: #222;
    color: #fff;
    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 {
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.thanks-box p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-box .btn-primary {
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
    width: auto;
    padding: 15px 40px;
}

.page-header {
    background: #c62828;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

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

.content-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

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

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #222;
}

.contact-info p {
    margin-bottom: 12px;
    color: #555;
}

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

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

    .nav {
        width: 100%;
        justify-content: center;
    }

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

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

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

    .section-title {
        font-size: 28px;
    }
}