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

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

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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #888;
    padding: 4px 10px;
    background: #f5f5f3;
    border-radius: 4px;
    margin-left: auto;
    margin-right: 16px;
}

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

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

nav a:hover {
    color: #d4704a;
}

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

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

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

.hero-image {
    width: 100%;
    max-width: 680px;
    height: 420px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

.section {
    padding: 64px 0;
}

.section-title {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 400;
    text-align: center;
}

.section-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 48px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 32px;
    margin: 48px 0 24px;
    font-weight: 400;
}

.article-content h3 {
    font-size: 24px;
    margin: 36px 0 18px;
    font-weight: 500;
}

.inline-image {
    width: 100%;
    height: 380px;
    margin: 48px 0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

.inline-cta {
    background: #f8f6f4;
    padding: 32px;
    border-left: 4px solid #d4704a;
    margin: 48px 0;
    border-radius: 4px;
}

.inline-cta h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.inline-cta p {
    margin-bottom: 20px;
    color: #555;
}

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

.btn:hover {
    background: #c25d38;
}

.btn-secondary {
    background: #fff;
    color: #d4704a;
    border: 2px solid #d4704a;
}

.btn-secondary:hover {
    background: #d4704a;
    color: #fff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-price {
    font-size: 24px;
    color: #d4704a;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.service-card li:before {
    content: "✓ ";
    color: #d4704a;
    font-weight: bold;
    margin-right: 8px;
}

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

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

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

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

.contact-info {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    margin-top: 48px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 16px;
    color: #555;
}

footer {
    background: #2c2c2c;
    color: #aaa;
    padding: 48px 0 24px;
    margin-top: 80px;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
    justify-content: center;
}

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

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

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

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: #555;
}

.cookie-text a {
    color: #d4704a;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

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

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

.about-section {
    margin-bottom: 48px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.team-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e8d5c4;
}

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

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}

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

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

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: #555;
}

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

.thanks-page {
    text-align: center;
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 400;
}

.thanks-page p {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
}

.disclaimer {
    background: #fff9f5;
    border: 1px solid #f0e5dc;
    padding: 24px;
    margin: 48px 0;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

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

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

    nav ul {
        gap: 16px;
    }

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

    .service-card {
        padding: 24px;
    }
}
