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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 4px 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;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
    text-decoration: none;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background: #2c5282;
    transition: all 0.3s;
}

.hero-section {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    min-height: 70vh;
}

.hero-content {
    padding: 80px 40px 40px 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

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

.hero-image {
    width: 100%;
    background: #4a5568;
}

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

.intro-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3748;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5568;
}

.image-text-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.content-left {
    flex: 1;
    background: #e2e8f0;
}

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

.content-right {
    flex: 1;
}

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

.content-right p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #4a5568;
}

.services-overview {
    padding: 100px 20px;
    background: #f7fafc;
}

.container-standard {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #2d3748;
}

.section-header-center p {
    font-size: 19px;
    color: #718096;
}

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

.service-card {
    flex: 1 1 calc(50% - 16px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    background: #cbd5e0;
}

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

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

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

.service-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 16px;
}

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

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

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

.benefits-section {
    padding: 80px 20px;
    background: #ffffff;
}

.benefits-section h2 {
    font-size: 38px;
    margin-bottom: 48px;
    text-align: center;
    color: #2d3748;
}

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    padding: 32px;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.benefit-item p {
    font-size: 16px;
    color: #4a5568;
}

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

.form-wrapper {
    background: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-intro {
    font-size: 17px;
    color: #718096;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s;
}

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

.form-group input[readonly] {
    background: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #4a5568;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

.checkbox-group a:hover {
    color: #5568d3;
}

.btn-submit {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-top: 8px;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #edf2f7;
}

.disclaimer-text {
    font-size: 13px;
    color: #718096;
    line-height: 1.7;
    text-align: center;
}

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

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

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

.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: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4a5568;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #a0aec0;
}

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

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #38a169;
}

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

.btn-reject:hover {
    background: #2d3748;
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-content .service-name {
    display: inline-block;
    background: #edf2f7;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    color: #2c5282;
    margin: 16px 0;
}

.thanks-content a {
    display: inline-block;
    margin-top: 24px;
    background: #667eea;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.thanks-content a:hover {
    background: #5568d3;
}

.about-page,
.services-page,
.contact-page,
.legal-page {
    padding: 60px 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-header h1 {
    font-size: 44px;
    color: #2d3748;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 19px;
    color: #718096;
}

.content-section {
    max-width: 820px;
    margin: 0 auto 48px auto;
}

.content-section h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 16px;
}

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

.content-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 8px;
}

.services-list {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 6px solid #667eea;
}

.service-item h3 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-item .price-tag {
    display: inline-block;
    background: #edf2f7;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 24px;
    font-weight: 700;
    color: #2c5282;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    background: #f7fafc;
    padding: 40px;
    border-radius: 12px;
}

.contact-info h2 {
    font-size: 28px;
    color: #2d3748;
    margin-bottom: 24px;
}

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

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    font-size: 18px;
    color: #2d3748;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 12px 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .container-wide {
        flex-direction: column;
        gap: 32px;
    }

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

    .benefits-layout {
        flex-direction: column;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

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