* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5f8d;
    --secondary: #f4a261;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --accent: #e76f51;
    --text: #333;
    --border: #e0e0e0;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
}

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

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

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

nav a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f5f5 100%);
}

.hero-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.hero-description {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
}

.article-section {
    padding: 60px 0;
}

.article-section h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--dark);
}

.article-section h3 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.article-section p {
    font-size: 19px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.inline-image {
    margin: 48px 0;
    text-align: center;
}

.inline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.inline-cta {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 32px;
    margin: 48px 0;
    border-radius: 4px;
}

.inline-cta h3 {
    margin-top: 0;
    font-size: 24px;
    color: var(--dark);
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.cta-button:hover {
    background: #234a6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 141, 0.3);
}

.cta-button.secondary {
    background: var(--secondary);
}

.cta-button.secondary:hover {
    background: #e89450;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 32px;
    border-radius: 8px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 24px;
    margin: 0 0 8px 0;
    color: var(--dark);
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.form-section {
    background: var(--light);
    padding: 60px 0;
    margin: 60px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.testimonial-block {
    background: #fff;
    border-left: 4px solid var(--accent);
    padding: 32px;
    margin: 48px 0;
    font-style: italic;
}

.testimonial-block p {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.split-content {
    display: flex;
    gap: 48px;
    align-items: center;
    margin: 60px 0;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stats-row {
    display: flex;
    gap: 32px;
    margin: 48px 0;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 32px;
    background: var(--light);
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-text {
    color: #fff;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    color: #fff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-accept:hover {
    background: #e89450;
}

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

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

.contact-info {
    background: var(--light);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark);
}

.info-item {
    margin-bottom: 16px;
    font-size: 17px;
}

.info-item strong {
    color: var(--primary);
    display: inline-block;
    min-width: 140px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.policy-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.policy-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary);
}

.policy-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 20px 0 20px 40px;
}

.policy-content li {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--primary);
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        border-top: 1px solid var(--border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

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

    .article-section h2 {
        font-size: 28px;
    }

    .article-section p {
        font-size: 17px;
    }

    .split-content {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

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

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