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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: #1a1a1a;
    background: #fafafa;
}

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

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

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

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

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

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

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

.article-container {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 30px;
}

.hero-section {
    margin-bottom: 50px;
}

.hero-section h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
}

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

.hero-image {
    width: 100%;
    height: 420px;
    background: #e8e8e8;
    margin: 30px 0;
    border-radius: 4px;
}

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

.content-block {
    margin: 45px 0;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 18px;
    color: #222;
    font-weight: 600;
}

.content-block h3 {
    font-size: 24px;
    margin: 35px 0 15px;
    color: #333;
}

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

.inline-image {
    width: 100%;
    height: 340px;
    background: #e8e8e8;
    margin: 35px 0;
    border-radius: 4px;
}

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

.inline-cta {
    background: #f9f9f9;
    padding: 35px;
    margin: 40px 0;
    border-left: 4px solid #d946a0;
    border-radius: 2px;
}

.inline-cta h3 {
    margin: 0 0 15px;
    font-size: 22px;
}

.inline-cta p {
    margin-bottom: 20px;
    font-size: 17px;
}

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

.cta-button:hover {
    background: #c23889;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.service-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #222;
}

.service-card p {
    margin-bottom: 15px;
    font-size: 17px;
    color: #444;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #d946a0;
    margin: 15px 0;
}

.form-section {
    background: #fff;
    padding: 45px;
    margin: 50px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.form-section h2 {
    margin-bottom: 25px;
    font-size: 30px;
}

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

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

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

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

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

.footer-content {
    max-width: 780px;
    margin: 0 auto;
}

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

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

.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: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.disclaimer {
    background: #fff9e6;
    padding: 25px;
    margin: 40px 0;
    border-left: 3px solid #ffc107;
    font-size: 15px;
    color: #666;
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    color: #444;
}

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

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

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

.cookie-accept:hover {
    background: #c23889;
}

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

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

.contact-info {
    background: #fff;
    padding: 35px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.contact-info h3 {
    margin-bottom: 20px;
    color: #222;
}

.contact-detail {
    margin-bottom: 18px;
    font-size: 17px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

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

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #111;
}

.legal-content h2 {
    font-size: 26px;
    margin: 35px 0 15px;
    color: #222;
}

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

.legal-content ul {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    color: #3a3a3a;
}

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

.thanks-container {
    max-width: 680px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #d946a0;
}

.thanks-container p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #444;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #d946a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

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

    .nav-links {
        gap: 15px;
    }

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

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

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