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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #c74375;
    text-decoration: none;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

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

nav a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.2s;
}

nav a:hover {
    color: #c74375;
}

.hero-editorial {
    padding: 80px 0 60px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 48px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-editorial .subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 480px;
    margin: 0 auto 60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.article-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.article-section h3 {
    font-size: 26px;
    margin: 48px 0 16px;
    color: #2c2c2c;
    font-weight: 600;
}

.article-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
}

.inline-image {
    width: 100%;
    max-width: 700px;
    height: 400px;
    margin: 48px auto;
    border-radius: 6px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.inline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-inline {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #c74375 0%, #a83560 100%);
    border-radius: 8px;
    margin: 56px 0;
}

.cta-inline h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 16px;
}

.cta-inline p {
    color: #fff;
    font-size: 17px;
    margin-bottom: 24px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #fff;
    color: #c74375;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-primary {
    background-color: #c74375;
    color: #fff;
}

.btn-primary:hover {
    background-color: #a83560;
}

.services-list {
    padding: 60px 0;
}

.service-card {
    background: #fff;
    padding: 36px;
    margin-bottom: 32px;
    border-radius: 8px;
    border-left: 4px solid #c74375;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #c74375;
    margin-top: 16px;
}

.form-section {
    background: #fff;
    padding: 56px 40px;
    border-radius: 8px;
    margin: 60px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c74375;
}

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

footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 56px 0 32px;
    margin-top: 80px;
}

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

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

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

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #444;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    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-content p {
    flex: 1;
    font-size: 14px;
    color: #555;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-cookie.accept {
    background-color: #c74375;
    color: #fff;
}

.btn-cookie.accept:hover {
    background-color: #a83560;
}

.btn-cookie.reject {
    background-color: #e0e0e0;
    color: #555;
}

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

.about-intro {
    text-align: center;
    padding: 80px 0 40px;
}

.about-intro h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 19px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.story-image {
    width: 100%;
    max-width: 800px;
    height: 440px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-intro {
    text-align: center;
    padding: 80px 0 40px;
}

.contact-intro h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-details {
    background: #fff;
    padding: 48px;
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

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

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

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #2c2c2c;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #444;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

.thanks-container {
    text-align: center;
    padding: 120px 24px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #c74375;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-container p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

    .header-content {
        gap: 16px;
    }

    nav ul {
        gap: 16px;
        font-size: 14px;
    }

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

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