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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
}

.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-buttons {
    display: flex;
    gap: 15px;
}

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

.cookie-accept {
    background: #3498db;
    color: white;
}

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

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background: #ecf0f1;
    padding: 6px 14px;
    border-radius: 4px;
}

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-cards {
    padding: 100px 20px;
    background: #f8f9fa;
}

.intro-cards h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.info-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    width: calc(50% - 15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-icon {
    width: 100%;
    height: 280px;
    background: #e8eaf6;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: #2c3e50;
}

.info-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0 30px 30px;
}

.services-section {
    padding: 100px 20px;
    background: white;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e8eaf6;
    border-radius: 12px;
    padding: 0;
    width: calc(33.333% - 27px);
    min-width: 320px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.service-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #2c3e50;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    white-space: nowrap;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #f0f0f0;
}

.service-card p {
    padding: 25px 30px;
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.form-wrapper h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-wrapper > p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

.submit-btn {
    padding: 16px 40px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 20px 30px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #808080;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 20px;
}

.thanks-content {
    background: white;
    border-radius: 12px;
    padding: 60px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.thanks-content .selected-service-info strong {
    color: #667eea;
    font-size: 20px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 35px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.about-hero {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-hero p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.about-content {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.about-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    object-fit: cover;
    background: #f0f0f0;
}

.contact-page {
    padding: 100px 20px;
    background: #f8f9fa;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-container > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.contact-item h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-page {
    padding: 100px 20px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .info-card {
        width: 100%;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .intro-cards h2,
    .services-section h2 {
        font-size: 32px;
    }

    .service-card {
        width: 100%;
        min-width: auto;
    }

    .form-wrapper {
        padding: 35px;
    }

    .contact-container {
        padding: 40px 30px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .thanks-content {
        padding: 40px 30px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }
}