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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn.accept {
    background-color: #2e7d32;
    color: #ffffff;
}

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

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

.cookie-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: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.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: #0066cc;
}

.editorial-layout {
    background-color: #ffffff;
    padding: 40px 0;
}

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

.article-header {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 40px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.article-title-section {
    margin-bottom: 30px;
}

.article-title-section h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.article-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
}

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

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 20px;
}

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

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

.app-category {
    margin: 50px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
}

.app-category h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.app-category p {
    margin-bottom: 16px;
}

.cta-inline {
    background-color: #f0f7ff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 60px 0;
}

.cta-inline h2 {
    margin-bottom: 16px;
}

.cta-link {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.cta-link:hover {
    background-color: #0052a3;
}

.testimonial-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #fafafa;
    border-left: 6px solid #333;
}

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

.testimonial-section cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.form-section {
    margin: 80px 0;
    padding: 50px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    padding: 30px;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-select-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.service-select-btn:hover {
    background-color: #0052a3;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.selected-service-display {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
    margin-bottom: 12px;
}

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

.change-service-btn {
    width: 100%;
    padding: 12px 24px;
    background-color: transparent;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.change-service-btn:hover {
    background-color: #f5f5f5;
}

.disclaimer-section {
    margin-top: 60px;
    padding: 30px;
    background-color: #fff9e6;
    border: 1px solid #ffe082;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px;
    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: 200px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.page-header {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #555;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content ul li,
.page-content ol li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.contact-info strong {
    color: #1a1a1a;
}

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

.about-image {
    margin: 40px 0;
    background-color: #e0e0e0;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.service-item {
    padding: 40px;
    background-color: #fafafa;
    border-left: 4px solid #0066cc;
    border-radius: 6px;
}

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

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-item .price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-top: 20px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 40px;
    background-color: #ffffff;
    border: 2px solid #2e7d32;
    border-radius: 8px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 38px;
    color: #2e7d32;
    margin-bottom: 24px;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.thanks-container .service-details {
    background-color: #f0f7ff;
    padding: 24px;
    border-radius: 6px;
    margin: 30px 0;
    text-align: left;
}

.thanks-container .back-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.thanks-container .back-btn:hover {
    background-color: #0052a3;
}

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

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

    .article-title-section h1 {
        font-size: 32px;
    }

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

    .article-content {
        font-size: 16px;
    }

    .content-block h2 {
        font-size: 26px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

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