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

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

.ad-disclosure {
    background: #f4f4f4;
    padding: 8px 0;
    text-align: center;
    font-size: 11px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.hero-editorial {
    max-width: 720px;
    margin: 60px auto;
    padding: 0 30px;
}

.hero-editorial h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.hero-editorial .subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: 460px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 2px;
}

.content-block {
    max-width: 680px;
    margin: 50px auto;
    padding: 0 30px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.content-block h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    font-weight: 500;
    color: #2c2c2c;
}

.content-block p {
    margin-bottom: 18px;
    font-size: 17px;
    color: #3a3a3a;
}

.inline-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    margin: 35px 0;
    border-radius: 2px;
    background-color: #e8e8e8;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: #8b5a3c;
    color: #fff;
    text-decoration: none;
    margin: 25px 0;
    transition: background 0.3s;
    font-size: 15px;
    border-radius: 2px;
}

.cta-inline:hover {
    background: #6d4630;
}

.service-card-editorial {
    background: #fff;
    padding: 35px;
    margin: 30px 0;
    border-left: 3px solid #8b5a3c;
}

.service-card-editorial h3 {
    margin-top: 0;
    font-size: 22px;
}

.service-card-editorial .price {
    font-size: 28px;
    color: #8b5a3c;
    font-weight: 600;
    margin: 15px 0;
}

.service-card-editorial .price-note {
    font-size: 14px;
    color: #888;
}

.form-container {
    max-width: 620px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    color: #3a3a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    border-radius: 2px;
}

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

.submit-btn {
    background: #8b5a3c;
    color: #fff;
    padding: 14px 40px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
}

.submit-btn:hover {
    background: #6d4630;
}

footer {
    background: #2c2c2c;
    color: #b0b0b0;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

.footer-section h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 900px;
    margin: 30px auto 0;
    padding-top: 25px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 13px;
    color: #888;
}

.disclaimer {
    max-width: 680px;
    margin: 40px auto;
    padding: 25px;
    background: #f9f9f9;
    border-left: 3px solid #999;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #8b5a3c;
    padding: 25px;
    display: none;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #3a3a3a;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    border-radius: 2px;
}

.cookie-accept {
    background: #8b5a3c;
    color: #fff;
}

.cookie-accept:hover {
    background: #6d4630;
}

.cookie-reject {
    background: #e0e0e0;
    color: #3a3a3a;
}

.cookie-reject:hover {
    background: #d0d0d0;
}

.contact-details {
    max-width: 680px;
    margin: 40px auto;
    padding: 0 30px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.legal-content {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 30px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.thanks-container {
    max-width: 680px;
    margin: 80px auto;
    padding: 50px;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #8b5a3c;
    font-weight: 400;
}

.thanks-container p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .hero-editorial h1 {
        font-size: 32px;
    }

    .nav-links {
        gap: 18px;
        font-size: 13px;
    }

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

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