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

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

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

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

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

.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: #4a90e2;
    color: #ffffff;
}

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

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

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

.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 24px;
    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: -0.5px;
}

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

.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: #4a90e2;
}

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

.editorial-layout {
    background-color: #ffffff;
}

.hero-article {
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

.hero-article .article-container {
    padding-top: 40px;
}

h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 0;
}

.content-section {
    padding: 48px 0;
}

.alternate-bg {
    background-color: #f9f9f9;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 600;
}

.article-container p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #333333;
}

.inline-image-block {
    margin: 40px 0;
    background-color: #f0f0f0;
}

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

.services-preview {
    padding: 64px 0;
    background-color: #ffffff;
}

.services-preview .article-container {
    max-width: 960px;
}

.service-cards-editorial {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-card-item {
    padding: 32px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.service-card-item:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-card-item p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.6;
}

.price-tag {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
}

.btn-select-service {
    padding: 12px 28px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.btn-select-service:hover {
    background-color: #357abd;
}

.inquiry-section {
    padding: 64px 0;
    background-color: #f5f5f5;
}

.editorial-form {
    margin-top: 40px;
    max-width: 540px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cccccc;
    font-size: 16px;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit-form:hover {
    background-color: #333333;
}

.disclaimer-section {
    padding: 48px 0;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

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

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 48px 0 24px;
}

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

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
    font-family: 'Arial', sans-serif;
}

.footer-column p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

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

.footer-column ul li a:hover {
    color: #4a90e2;
}

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

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

.thanks-container {
    max-width: 720px;
    margin: 80px auto;
    padding: 48px 24px;
    text-align: center;
}

.thanks-container h1 {
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333333;
}

.thanks-container .service-name {
    font-weight: 700;
    color: #4a90e2;
}

.thanks-container a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thanks-container a:hover {
    color: #357abd;
}

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

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

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

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

    .article-container p {
        font-size: 16px;
    }

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

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