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

:root {
    --primary: #2c5f4f;
    --secondary: #8b7355;
    --accent: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --gray: #666;
    --white: #ffffff;
}

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: var(--gray);
    font-family: Arial, sans-serif;
    font-style: italic;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-size: 15px;
    font-family: Arial, sans-serif;
    transition: color 0.3s;
}

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

.hero-editorial {
    padding: 80px 0 60px;
    background: var(--light);
}

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

.hero-subtitle {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 40px;
    font-weight: normal;
    font-style: italic;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin: 40px 0;
    background-color: var(--secondary);
}

.editorial-text {
    font-size: 19px;
    line-height: 1.8;
    margin: 32px 0;
    color: #333;
}

.editorial-text p {
    margin-bottom: 24px;
}

.inline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 48px 0;
    background-color: var(--accent);
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: normal;
    color: var(--dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    font-style: italic;
}

.cta-inline {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    margin: 32px 0;
    font-size: 17px;
    transition: background 0.3s;
    font-family: Arial, sans-serif;
}

.cta-inline:hover {
    background: #234a3d;
    cursor: pointer;
}

.service-list {
    margin: 48px 0;
}

.service-item {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

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

.service-name {
    font-size: 24px;
    color: var(--dark);
    font-weight: normal;
}

.service-price {
    font-size: 22px;
    color: var(--primary);
    font-weight: bold;
    font-family: Arial, sans-serif;
}

.service-description {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

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

.form-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-title {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 17px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: Arial, sans-serif;
    background: var(--white);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
    font-family: Georgia, serif;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: Arial, sans-serif;
}

.submit-btn:hover {
    background: #234a3d;
}

.testimonial-block {
    background: var(--white);
    padding: 40px;
    margin: 48px 0;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 16px;
    color: var(--gray);
    font-style: normal;
    font-family: Arial, sans-serif;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
    font-family: Arial, sans-serif;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #999;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    margin-top: 40px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 24px;
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    font-family: Arial, sans-serif;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: #234a3d;
}

.cookie-reject {
    background: #555;
    color: var(--white);
}

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

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

.about-intro {
    font-size: 22px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
    font-style: italic;
}

.value-item {
    margin-bottom: 40px;
}

.value-title {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.contact-item {
    padding: 32px;
    background: var(--light);
}

.contact-label {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 20px;
    color: var(--dark);
}

.legal-page {
    padding: 60px 0;
    min-height: 60vh;
}

.legal-content {
    font-size: 16px;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: normal;
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    font-weight: normal;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--gray);
}

.legal-content ul {
    margin: 16px 0 16px 32px;
    color: var(--gray);
}

.legal-content li {
    margin-bottom: 8px;
}

.thanks-container {
    text-align: center;
    padding: 120px 24px;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-icon {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: normal;
}

.thanks-message {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.thanks-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 48px;
    text-decoration: none;
    font-size: 17px;
    transition: background 0.3s;
    font-family: Arial, sans-serif;
}

.thanks-cta:hover {
    background: #234a3d;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .section-title {
        font-size: 28px;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

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

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