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

.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;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

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

.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: 250px;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

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

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

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
}

.btn-cookie-reject:hover {
    border-color: #888;
    background: rgba(255,255,255,0.05);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

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

.main-nav a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.85) 0%, rgba(52,152,219,0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-text-card {
    background: rgba(255,255,255,0.95);
    padding: 50px;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-text-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

.info-cards {
    padding: 80px 0;
    background: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

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

.info-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

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

.section-header-card {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-card h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid #3498db;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.service-features li:last-child {
    border-bottom: none;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #34495e;
    transform: translateY(-2px);
}

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

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

.process-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 240px;
    background: #f8f9fa;
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

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

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

.testimonials-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #fff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    font-size: 15px;
}

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

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

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

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.3);
}

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

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

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

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

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

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

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

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

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

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

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

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

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

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

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

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

.thanks-card p {
    font-size: 17px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-card .selected-service {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.thanks-card .selected-service strong {
    color: #3498db;
    font-size: 20px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding: 80px 0;
}

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

.contact-info h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

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

.contact-text p {
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

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

.contact-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5ddd3;
}

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

.about-hero {
    padding: 80px 0;
    background: #fff;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.about-hero .lead {
    font-size: 20px;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.about-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #d9cfc4;
}

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

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

.content-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

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

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

.content-card h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-card ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-card ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
    background: #fafafa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

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

.legal-content .last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 35px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin: 15px 0 20px 25px;
}

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

.services-hero {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-hero p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        box-shadow: 4px 0 12px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .main-nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text-card {
        padding: 35px 25px;
    }

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

    .service-card {
        width: 100%;
    }

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

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

    .form-card {
        padding: 35px 25px;
    }
}