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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafafa;
}

.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 #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
    font-weight: 400;
}

.article-section {
    padding: 60px 20px;
    background: #fff;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.section-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #444;
}

.inline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 4px;
}

.quote-block {
    background: #f8f8f8;
    border-left: 4px solid #667eea;
    padding: 30px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #333;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 35px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    background: #5568d3;
}

.btn-secondary {
    background: #764ba2;
}

.btn-secondary:hover {
    background: #653a8b;
}

.btn-outline {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: #fff;
}

.cta-inline {
    text-align: center;
    padding: 50px 20px;
    background: #f4f4f4;
    margin: 60px 0;
}

.cta-inline h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    padding: 15px;
    text-align: center;
    z-index: 99;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.sticky-cta .btn {
    margin: 0;
}

.form-section {
    background: #fff;
    padding: 60px 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 30px;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #667eea;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    color: #444;
}

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

.testimonial-card {
    background: #f9f9f9;
    border-left: 3px solid #764ba2;
    padding: 30px;
    margin: 30px 0;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #667eea;
}

.stats-section {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

.highlight-section {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
}

.highlight-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.image-text-section {
    padding: 60px 20px;
    background: #fff;
}

.image-full {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 4px;
}

.contact-info {
    background: #f8f8f8;
    padding: 40px;
    margin: 40px 0;
    border-radius: 4px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #444;
}

.thanks-message {
    text-align: center;
    padding: 100px 20px;
    background: #fff;
}

.thanks-message h1 {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 20px;
}

.thanks-message p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.policy-section {
    padding: 60px 20px;
    background: #fff;
}

.policy-section h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.policy-section h2 {
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #333;
}

.policy-section p,
.policy-section ul {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.policy-section ul {
    padding-left: 30px;
}

.policy-section li {
    margin-bottom: 10px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

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

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

    .sticky-cta {
        padding: 12px;
    }
}
