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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-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: var(--dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-editorial {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: #fff;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-editorial p {
    font-size: 1.25rem;
    max-width: 580px;
    margin: 0 auto 35px;
    opacity: 0.95;
}

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

.editorial-section.alt-bg {
    background: var(--light);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: center;
}

.editorial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.editorial-text strong {
    color: var(--primary);
}

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

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin: 20px 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.3);
}

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

.cta-secondary:hover {
    box-shadow: 0 6px 20px rgba(44, 95, 124, 0.3);
}

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

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-left: 4px solid var(--primary);
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: 700;
    margin: 20px 0;
}

.service-price small {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
}

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

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

.form-container h2 {
    margin-bottom: 30px;
    color: var(--dark);
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
    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;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #d65a3d;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.3s;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

.testimonial-box {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--secondary);
    font-style: italic;
}

.testimonial-box p {
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark);
    font-style: normal;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    flex: 1 1 calc(50% - 15px);
    padding: 25px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item h4 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

.about-intro {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: #fff;
    text-align: center;
}

.about-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

.policy-content h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.policy-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.policy-content p,
.policy-content ul {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

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

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(38, 70, 83, 0.98);
    color: #fff;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.2);
    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: 20px;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn.accept {
    background: var(--accent);
    color: #fff;
}

.cookie-btn.reject {
    background: #6c757d;
    color: #fff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--dark);
        width: 100%;
        padding: 30px;
        gap: 15px;
        transition: left 0.3s;
    }

    nav ul.active {
        left: 0;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

    .hero-editorial p {
        font-size: 1.1rem;
    }

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

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial {
        padding: 50px 0 40px;
    }

    .hero-editorial h1 {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 25px;
    }

    .form-container {
        padding: 30px 20px;
    }
}