/* Main Styles for Myagkaya Grusha Cleaning Services */

/* Global Styles */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #81C784;
    --light-accent: #E8F5E9;
    --text-color: #333333;
    --light-text: #666666;
    --background-color: #ffffff;
    --secondary-background: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-text {
    color: var(--primary-color);
    padding: 0;
    background: none;
    border: none;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    display: none;
}

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

.cookie-content h3 {
    margin-bottom: 10px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

#accept-necessary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

#accept-necessary:hover {
    background-color: var(--light-accent);
}

#accept-all {
    background-color: var(--primary-color);
    color: white;
}

#accept-all:hover {
    background-color: var(--secondary-color);
}

#cookie-settings {
    background-color: #f5f5f5;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

#cookie-settings:hover {
    background-color: #e0e0e0;
}

.cookie-settings-panel {
    margin-top: 20px;
    display: none;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cookie-option {
    margin-bottom: 15px;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 10px;
}

.cookie-option p {
    margin-left: 30px;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 5px;
}

#save-preferences {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    margin-top: 10px;
}

#save-preferences:hover {
    background-color: var(--secondary-color);
}

/* Header */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

.logo a {
    display: block;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 10px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--light-accent);
}

.hero-content {
    max-width: 600px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.hero-image {
    flex: 1;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: var(--light-text);
    flex-grow: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.about-text .btn {
    margin-top: 10px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-accent);
}

.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 350px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.rating {
    color: #FFD700;
    margin-top: 5px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.newsletter-form .form-group {
    flex-grow: 1;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form .form-columns {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-form .form-column {
    flex: 1;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

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

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.consent-checkbox input {
    width: auto;
}

.consent-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-submit {
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 20px;
    color: #ccc;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-services a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-contact svg {
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

/* Page Banner */
.page-banner {
    background-color: var(--light-accent);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    margin-bottom: 10px;
}

.page-banner p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-text);
}

/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-company-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-company-image {
    order: 1;
}

.about-company-text {
    order: 2;
}

.about-company-text h2 {
    margin-bottom: 20px;
}

.about-company-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

/* Mission and Values Section */
.mission-values-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

.mission-values-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mission-box {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.mission-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: var(--shadow);
}

.mission-box h3 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mission-box p {
    color: var(--light-text);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--light-text);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.member-image {
    margin-bottom: 20px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: var(--light-text);
}

/* Why Choose About Section */
.why-choose-about-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.service-detail-section.alt-bg {
    background-color: var(--secondary-background);
}

.service-detail-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-detail-content.reverse {
    flex-direction: row-reverse;
}

.service-detail-text {
    flex: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-text h2 {
    margin-bottom: 20px;
}

.service-detail-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.service-list {
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-methods h2,
.contact-map h2 {
    margin-bottom: 20px;
}

.contact-methods p {
    margin-bottom: 30px;
    max-width: 800px;
}

.contact-method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.method-icon {
    margin-bottom: 20px;
}

.contact-method-card h3 {
    margin-bottom: 15px;
}

.contact-method-card p {
    margin-bottom: 10px;
    color: var(--light-text);
}

.map-container {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.map-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--light-text);
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-area-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.service-area-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-area-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-area-card ul li {
    color: var(--light-text);
    padding-left: 20px;
    position: relative;
}

.service-area-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-areas-note {
    text-align: center;
    margin-top: 30px;
    color: var(--light-text);
}

/* Emergency Cleaning Section */
.emergency-cleaning-section {
    padding: 80px 0;
    background-color: var(--light-accent);
}

.emergency-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.emergency-text h2 {
    margin-bottom: 20px;
}

.emergency-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.emergency-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.emergency-note {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Legal Content Section */
.legal-content-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.last-updated {
    margin-bottom: 30px;
    color: var(--light-text);
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    margin-top: 20px;
    margin-bottom: 15px;
}

.legal-section p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--light-accent);
    font-weight: 600;
}

.contact-info {
    background-color: var(--light-accent);
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 5px;
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.message {
    margin-bottom: 30px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    margin-bottom: 30px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content h3 {
    margin-bottom: 10px;
}

.step-content p {
    color: var(--light-text);
}

.subscription-confirmation {
    background-color: var(--light-accent);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    display: none;
}

.subscription-confirmation.visible {
    display: block;
}

.subscription-confirmation h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.subscription-note {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 15px;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Additional Info Section */
.additional-info-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.info-icon {
    margin-bottom: 20px;
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.info-link {
    font-weight: 600;
    color: var(--primary-color);
}

.social-links-small {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links-small a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links-small a:hover {
    background-color: var(--accent-color);
}

/* Blog Styles */
.blog-intro-section {
    padding: 40px 0;
    background-color: var(--background-color);
}

.blog-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-intro-content p {
    color: var(--light-text);
}

.featured-article-section {
    padding: 60px 0;
    background-color: var(--secondary-background);
}

.featured-article {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-article-image {
    flex: 1;
    min-height: 400px;
}

.featured-article-content {
    flex: 1;
    padding: 40px;
}

.article-category {
    display: inline-block;
    background-color: var(--light-accent);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-article-content h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.article-meta {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.article-excerpt {
    margin-bottom: 30px;
    color: var(--light-text);
}

.blog-articles-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    margin: 10px 0;
    font-size: 1.3rem;
}

.blog-meta {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--light-text);
}

/* Blog Article Page */
.article-content-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

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

.article-header h1 {
    margin: 15px 0;
    font-size: 2.2rem;
}

.article-meta-full {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-name {
    font-weight: 600;
}

.article-date,
.article-category-inline {
    color: var(--light-text);
    font-size: 0.9rem;
}

.article-featured-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.article-text h2 {
    margin: 40px 0 20px;
    color: var(--text-color);
}

.article-text h3 {
    margin: 30px 0 15px;
    color: var(--text-color);
}

.article-text p {
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.8;
}

.article-text ul,
.article-text ol {
    margin: 20px 0;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
    color: var(--light-text);
    line-height: 1.8;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.article-tag {
    background-color: var(--light-accent);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.article-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.article-share h3 {
    margin-bottom: 15px;
}

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

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-button:hover {
    background-color: var(--accent-color);
}

.related-articles-section {
    padding: 80px 0;
    background-color: var(--secondary-background);
}

/* Sitemap Styles */
.sitemap-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.sitemap-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.sitemap-container h2 {
    margin: 30px 0 20px;
    color: var(--primary-color);
}

.sitemap-container h2:first-child {
    margin-top: 0;
}

.sitemap-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sitemap-list li {
    padding-left: 20px;
    position: relative;
}

.sitemap-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.sitemap-sublist {
    margin-left: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Robots.txt Styles */
.robots-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.robots-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.robots-content {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    font-family: monospace;
    white-space: pre-wrap;
}

/* 404 Page Styles */
.error-section {
    padding: 100px 0;
    background-color: var(--background-color);
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    margin-bottom: 30px;
}

.error-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.error-content p {
    margin-bottom: 30px;
    color: var(--light-text);
    font-size: 1.1rem;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}