/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333333;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555555;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

/* Header and Navigation */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-brand a {
    color: #333333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand i {
    color: #e74c3c;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #e74c3c;
    color: white;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333333;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
}

.abstract-bg {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

/* Sections */
.services-overview,
.about-preview,
.process-steps,
.featured-areas,
.reviews,
.blog-preview {
    padding: 5rem 0;
}

.services-overview {
    background-color: #f8f9fa;
}

.services-overview h2,
.about-preview h2,
.process-steps h2,
.featured-areas h2,
.reviews h2,
.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.services-overview h2 i,
.about-preview h2 i,
.process-steps h2 i,
.featured-areas h2 i,
.reviews h2 i,
.blog-preview h2 i {
    color: #e74c3c;
}

/* Grid Layouts */
.services-grid,
.areas-grid,
.reviews-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card,
.area-card,
.review-card,
.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.area-card:hover,
.review-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-card i,
.area-card i,
.blog-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.service-card h3,
.area-card h3,
.review-card h3,
.blog-card h3 {
    margin-bottom: 1rem;
    color: #333333;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-visual {
    text-align: center;
}

.about-visual i {
    font-size: 8rem;
    color: #e74c3c;
    opacity: 0.8;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 1rem;
}

/* Process Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step i {
    font-size: 2.5rem;
    color: #e74c3c;
    margin: 1rem 0;
}

/* Reviews */
.reviews {
    background-color: #f8f9fa;
}

.review-card {
    text-align: left;
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #f39c12;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-card cite {
    font-weight: 600;
    color: #e74c3c;
}

/* Blog Preview */
.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.blog-card {
    text-align: left;
}

.blog-card a {
    color: inherit;
}

.blog-card h3 a:hover {
    color: #e74c3c;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    background: #555555;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

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

/* Footer */
.footer {
    background: #333333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #e74c3c;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    color: white !important;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #bdc3c7;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #555555;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.page-header h1 i {
    color: #e74c3c;
}

.page-header p {
    font-size: 1.2rem;
    color: #ecf0f1;
}

/* Services Detail Page */
.services-detail {
    padding: 5rem 0;
}

.service-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content ul {
    list-style: none;
    margin-top: 1rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
}

/* Process Timeline */
.process-detail {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ecf0f1;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Page Specific */
.company-story {
    padding: 5rem 0;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.member-avatar i {
    font-size: 2rem;
    color: white;
}

.position {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.statistics {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.5rem;
}

.certifications {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

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

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cert-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-info h2 i {
    color: #e74c3c;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #333333;
}

.contact-item p {
    margin: 0;
    color: #555555;
}

.contact-item a {
    color: #e74c3c;
    font-weight: 600;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h3 {
    margin-bottom: 1rem;
    color: #333333;
}

/* Form Styles */
.contact-form h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-form h2 i {
    color: #e74c3c;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

.submit-btn {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #c0392b;
}

/* Quick Contact */
.quick-contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.quick-contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-contact h2 i {
    color: #e74c3c;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quick-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quick-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.quick-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.quick-btn:hover {
    background: #c0392b;
    color: white;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 5rem;
    text-align: center;
    margin-top: 80px;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon i {
    font-size: 5rem;
    color: #27ae60;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #333333;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: #555555;
    margin-bottom: 3rem;
}

.thank-you-details {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you-details h2 {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.thank-you-details h2 i {
    color: #e74c3c;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.contact-reminder {
    background: #e74c3c;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.contact-reminder h3 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-reminder h3 i {
    color: #ecf0f1;
}

.contact-reminder p {
    color: #ecf0f1;
    margin-bottom: 1rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.navigation-options {
    margin-bottom: 3rem;
}

.navigation-options h3 {
    margin-bottom: 1.5rem;
    color: #333333;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #555555;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-button:hover {
    background: #333333;
    color: white;
}

.additional-resources {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.additional-resources h2 i {
    color: #e74c3c;
}

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

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-item i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.resource-link:hover {
    background: #c0392b;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333333;
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    color: #ecf0f1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #c0392b;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-tertiary {
    background: transparent;
    color: #bdc3c7;
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.btn-tertiary:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .steps-list {
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid,
    .areas-grid,
    .reviews-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Blog Styles */
.blog-section {
    padding: 5rem 0;
}

.blog-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-category {
    background: #e74c3c;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.blog-icon i {
    font-size: 2.5rem;
    color: #e74c3c;
}

.blog-card h2 {
    margin-bottom: 1rem;
}

.blog-card h2 a {
    color: #333333;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #e74c3c;
}

.blog-card p {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.read-time {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.read-more {
    color: #e74c3c;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.6rem;
}

.blog-grid .blog-card:not(.featured) {
    padding: 2rem;
}

.blog-grid .blog-card.featured > * {
    padding: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #555555 0%, #333333 100%);
    padding: 4rem 0;
    color: white;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-content h2 i {
    color: #e74c3c;
}

.newsletter-content p {
    color: #ecf0f1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.newsletter-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: #c0392b;
}

.newsletter-disclaimer {
    margin: 0;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.newsletter-disclaimer a {
    color: #e74c3c;
}

/* Blog Categories */
.blog-categories {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.blog-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.blog-categories h2 i {
    color: #e74c3c;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    color: inherit;
}

.category-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 1rem;
    color: #333333;
}

.category-card p {
    color: #555555;
    margin-bottom: 1rem;
}

.article-count {
    background: #e74c3c;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Article Page Styles */
.article-header {
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.article-header h1 {
    color: white;
}

.article-meta-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: white;
    justify-content: center;
    flex-wrap: wrap;
}

.article-meta-header span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-content {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.article-content h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.article-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #333333;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e74c3c;
}

.article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #555555;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #555555;
    line-height: 1.6;
}

.article-highlight {
    background: #f8f9fa;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.article-highlight h4 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.article-navigation {
    background: #f8f9fa;
    padding: 3rem 0;
}

.article-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.nav-article {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.nav-article:hover {
    transform: translateY(-3px);
    color: inherit;
}

.nav-article .nav-direction {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-article h4 {
    margin: 0;
    color: #333333;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta-section,
    .newsletter-section,
    .blog-categories,
    .article-navigation {
        display: none;
    }

    .page-header,
    .article-header {
        margin-top: 0;
        padding: 2rem 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .article-content {
        padding: 2rem 0;
    }
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-form input[type="email"] {
        border-radius: 5px;
    }

    .newsletter-btn {
        border-radius: 5px;
        justify-content: center;
    }

    .article-meta-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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