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

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

.ad-notice {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

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

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

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

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

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

.nav-links a:hover {
    color: #0984e3;
}

.hero-card {
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-content {
    flex: 1;
    min-width: 320px;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.hero-image {
    flex: 1;
    min-width: 320px;
    min-height: 400px;
    background: #dfe6e9;
}

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

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

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

.intro-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    width: 100%;
    height: 220px;
    background: #ecf0f1;
}

.card-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2d3436;
}

.intro-card p {
    padding: 0 25px 25px;
    color: #636e72;
    line-height: 1.7;
}

.services-showcase {
    padding: 80px 0;
    background: #ffffff;
}

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

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background: #dfe6e9;
}

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

.service-body {
    padding: 30px;
}

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

.service-body p {
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0984e3;
    margin-bottom: 20px;
}

.service-select-btn {
    width: 100%;
    padding: 14px;
    background: #0984e3;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.service-select-btn:hover {
    background: #0770c4;
    transform: scale(1.02);
}

.service-select-btn:active {
    transform: scale(0.98);
}

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

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #2d3436;
}

.form-intro {
    color: #636e72;
    margin-bottom: 35px;
}

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

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

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #0984e3;
}

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #00b894;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.submit-btn:active {
    transform: translateY(0);
}

.benefits-cards {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-cards h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #2d3436;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.benefit-card {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0984e3;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3436;
}

.benefit-card p {
    color: #636e72;
    line-height: 1.7;
}

.main-footer {
    background: #2d3436;
    color: #b2bec3;
    padding: 60px 0 30px;
}

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

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

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

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

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

.footer-col a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    font-size: 13px;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3436;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: #74b9ff;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-accept {
    background: #00b894;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #00a383;
    transform: translateY(-2px);
}

.cookie-reject {
    background: #636e72;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #00b894;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
}

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

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

.back-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #0984e3;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.back-home:hover {
    background: #0770c4;
    transform: translateY(-2px);
}

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

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

.contact-info-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2d3436;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 18px;
    color: #2d3436;
    line-height: 1.7;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #636e72;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

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

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

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

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

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

.about-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.about-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2d3436;
}

.about-card p {
    color: #636e72;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

    .nav-links {
        gap: 20px;
    }

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

    .benefit-card {
        flex: 1 1 100%;
    }

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