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

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

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

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

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

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

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

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

.navbar {
    background: #1a1a2e;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.ad-disclosure {
    font-size: 11px;
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
}

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

.nav-menu a:hover {
    color: #ffc107;
}

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

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

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    max-width: 800px;
    margin: 0 20px;
}

.hero-overlay h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #e0e0e0;
}

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

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a2e;
}

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

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

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

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.card-content p {
    color: #666;
    margin-bottom: 16px;
    font-size: 15px;
}

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

.card-cta {
    width: 100%;
    padding: 12px 24px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.card-cta:hover {
    background: #2d2d4a;
}

.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.form-card > p {
    color: #666;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    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: #667eea;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

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

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

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

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 17px;
}

.text-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #5568d3;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.disclaimer-box {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.disclaimer-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.disclaimer-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

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

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

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

.thanks-card .selected-service {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
    font-weight: 600;
    color: #1a1a2e;
}

.thanks-card .btn-home {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: #1a1a2e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-card .btn-home:hover {
    background: #2d2d4a;
}

.page-header {
    background: #1a1a2e;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

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

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

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

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

.content-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.content-section h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

.content-section ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.content-section ul li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 32px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

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

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

    .service-card {
        width: 100%;
    }

    .about-content-grid {
        flex-direction: column;
        gap: 40px;
    }

    .form-card {
        padding: 32px 24px;
    }

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