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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #d4a574;
    color: #1a1a1a;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.main-nav a:hover {
    color: #d4a574;
}

.ad-disclosure {
    font-size: 11px;
    color: #666666;
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

.editorial-content {
    max-width: 100%;
}

.article-width {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-article {
    padding: 80px 0 60px;
    background-color: #f9f9f9;
}

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

.lead-text {
    font-size: 21px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 0;
}

.inline-image {
    margin: 60px 0;
    background-color: #f5f5f5;
}

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

article h2 {
    font-size: 32px;
    margin: 60px 0 24px;
    color: #1a1a1a;
    font-weight: 400;
}

article p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-inline {
    text-align: center;
    margin: 50px 0;
}

.cta-link {
    display: inline-block;
    padding: 14px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.testimonial-inline {
    margin: 60px 0;
    padding: 40px 60px;
    background-color: #f9f9f9;
    border-left: 4px solid #d4a574;
}

.testimonial-inline blockquote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.7;
    color: #2c2c2c;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666666;
    font-family: 'Arial', sans-serif;
}

.services-cards {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 24px 20px;
}

.service-features span {
    background-color: #f5f5f5;
    padding: 6px 14px;
    font-size: 13px;
    color: #2c2c2c;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin: 0 24px 20px;
}

.btn-select {
    margin: 0 24px 24px;
    padding: 14px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-select:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.form-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    margin: 60px 0 0;
}

.contact-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
    color: #2c2c2c;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-submit:hover {
    background-color: #d4a574;
    color: #1a1a1a;
}

.disclaimer-section {
    background-color: #f0f0f0;
    padding: 40px 0;
    margin: 60px 0 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    font-style: italic;
    text-align: center;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #d4a574;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999999;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }

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

    .lead-text {
        font-size: 18px;
    }

    article h2 {
        font-size: 26px;
    }

    .testimonial-inline {
        padding: 30px 20px;
    }

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