* {
    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: #2d3748;
    background: #f7fafc;
}

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

.container-flex {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px 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;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
}

.ad-disclosure {
    font-size: 11px;
    color: #718096;
    padding: 4px 12px;
    background: #edf2f7;
    border-radius: 4px;
}

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

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

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

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

.hero-content {
    padding: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-content p {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-image {
    background: #e2e8f0;
}

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

.cta-primary {
    background: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

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

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

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

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

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

.info-card p {
    color: #718096;
    line-height: 1.7;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.services-section {
    padding: 80px 0;
    background: #f7fafc;
}

.services-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
}

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

.service-card {
    flex: 1;
    min-width: 340px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    background: #e2e8f0;
}

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

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #4a5568;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.btn-select {
    background: #667eea;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: auto;
}

.btn-select:hover {
    background: #5a67d8;
    transform: scale(1.02);
}

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

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

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

.selected-service {
    background: #ebf8ff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    color: #2c5282;
}

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

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

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

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-group a {
    color: #667eea;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

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

.btn-submit:hover {
    background: #5a67d8;
}

.trust-section {
    padding: 80px 0;
    background: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
}

.trust-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 300px;
    background: #f7fafc;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.trust-card p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-author {
    font-weight: 600;
    color: #2d3748;
}

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

.cta-content {
    text-align: center;
    color: #ffffff;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-secondary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.main-footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 60px 0 20px;
}

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

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

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

.footer-column p {
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #4a5568;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 12px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background: #38a169;
    transform: scale(1.05);
}

.btn-reject {
    background: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background: #2d3748;
    transform: scale(1.05);
}

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

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

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

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

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

.contact-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

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

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-header p {
    font-size: 18px;
    color: #718096;
}

.contact-info-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a202c;
}

.contact-info-card p {
    color: #4a5568;
    line-height: 1.8;
}

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

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a202c;
}

.page-header .date {
    color: #718096;
    font-size: 15px;
}

.page-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.page-content h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a5568;
}

.page-content strong {
    color: #2d3748;
}

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

    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 12px;
    }

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

    .container-flex {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-content {
        padding: 32px 24px;
    }
}