/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #777;
    --bg-color: #fff;
    --light-bg: #f8f9fa;
    --border-color: #e6e6e6;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

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

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

ul, ol {
    list-style: none;
}

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

section {
    padding: 60px 0;
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.primary-btn:hover {
    background-color: #2980b9;
    color: white;
}

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

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

.tertiary-btn {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 10px 15px;
}

.tertiary-btn:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

.bg-light {
    background-color: var(--light-bg);
}

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

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

.logo-container {
    max-width: 180px;
}

.logo {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    color: var(--primary-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.nav-cta {
    background-color: var(--secondary-color);
    color: white;
}

.nav-menu a.nav-cta:hover {
    background-color: #2980b9;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    z-index: 1001;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

.cookie-customize-panel.hidden {
    display: none;
}

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

.cookie-description {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 5px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-svg {
    max-width: 100%;
    height: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

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

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

/* About Section */
.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 6;
}

.about-image {
    flex: 5;
    display: flex;
    justify-content: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

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

.feature i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature p {
    font-size: 15px;
    color: var(--light-text);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.testimonial-card blockquote {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--light-text);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

.prev-testimonial, .next-testimonial {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.prev-testimonial:hover, .next-testimonial:hover {
    color: var(--secondary-color);
}

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

.blog-card {
    background-color: white;
    border-radius: 10px;
    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;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--light-text);
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: var(--primary-color);
}

.blog-card h3 a:hover {
    color: var(--secondary-color);
}

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

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

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

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

.newsletter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form input[type="email"] {
    width: 70%;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 15px 20px;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 14px;
}

.form-privacy input[type="checkbox"] {
    margin-top: 3px;
}

.form-privacy a {
    color: white;
    text-decoration: underline;
}

.form-privacy a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.site-footer {
    background-color: #1a2530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-info {
    grid-column: span 2;
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

.footer-info p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Page Headers */
.page-header {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.breadcrumbs {
    color: var(--light-text);
}

.breadcrumbs a {
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

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

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.contact-info-card a {
    color: var(--secondary-color);
}

.contact-form-wrapper {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-form-content {
    flex: 6;
}

.contact-form-image {
    flex: 4;
    display: flex;
    justify-content: center;
}

.contact-form-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-form-content p {
    margin-bottom: 30px;
    color: var(--light-text);
}

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

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

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

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-checkbox input {
    width: auto;
    margin-top: 5px;
}

.contact-form button {
    padding: 12px 30px;
}

.emergency-contact-banner {
    background-color: #fef6e9;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.emergency-icon {
    font-size: 40px;
    color: var(--warning-color);
}

.emergency-content {
    flex: 1;
}

.emergency-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.emergency-btn {
    white-space: nowrap;
}

/* Map Section */
.map-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 20px;
    overflow: hidden;
}

.map-placeholder {
    height: 400px;
    background-color: var(--light-bg);
    margin-bottom: 30px;
    border-radius: 5px;
}

.map-directions h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

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

.service-area h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.service-area ul li {
    margin-bottom: 8px;
    color: var(--text-color);
}

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

/* Legal Pages Styles */
.legal-header {
    background-color: var(--light-bg);
    padding: 50px 0;
    text-align: center;
}

.legal-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-header p {
    font-size: 16px;
    color: var(--light-text);
}

.legal-content {
    padding: 60px 0;
}

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

.legal-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-section ul li, .legal-section ol li {
    margin-bottom: 10px;
    line-height: 1.7;
    list-style-type: disc;
}

.legal-section ol li {
    list-style-type: decimal;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-section address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service Page Styles */
.services-nav {
    background-color: white;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.service-nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service-nav-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.service-nav-list li a:hover,
.service-nav-list li a.active {
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.service-detail-section {
    padding: 80px 0;
}

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

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

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

.service-detail-image {
    flex: 4;
    display: flex;
    justify-content: center;
}

.service-detail-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

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

.service-list {
    margin: 25px 0;
}

.service-list li {
    display: flex;
    margin-bottom: 25px;
    gap: 20px;
}

.service-list-icon {
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.service-list-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 12px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.material-item i {
    color: var(--secondary-color);
}

.service-cta {
    margin-top: 30px;
}

/* Blog Page Styles */
.blog-categories {
    background-color: white;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.category-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.category-list li a {
    display: block;
    padding: 15px 20px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.featured-article-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    margin-bottom: 60px;
}

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

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

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-article-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--light-text);
}

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

/* Article Page Styles */
.article-header {
    text-align: center;
    padding: 60px 0 30px;
}

.article-header h1 {
    font-size: 42px;
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.article-featured-image {
    margin-bottom: 50px;
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.article-main {
    max-width: 800px;
    margin: 0 auto;
}

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

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.article-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.article-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.article-section p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

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

.article-section ul li, .article-section ol li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.article-section ol li {
    list-style-type: decimal;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
}

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

.thank-you-icon {
    font-size: 80px;
    color: var(--success-color);
    margin-bottom: 30px;
}

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

.personalization {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thank-you-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--light-text);
}

.thank-you-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.what-next-section {
    background-color: var(--light-bg);
}

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

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -10px;
    width: 2px;
    background-color: var(--secondary-color);
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    flex-shrink: 0;
    z-index: 1;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

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

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

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

/* Specific sections in individual articles with unique designs */
.season-section {
    border-left: 4px solid;
    padding-left: 25px;
    margin-left: -25px;
}

.winter-section {
    border-color: #3498db;
}

.winter-section h2 {
    color: #3498db;
}

.spring-section {
    border-color: #27ae60;
}

.spring-section h2 {
    color: #27ae60;
}

.warning-importance {
    background-color: #fff3e0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.importance-icon {
    font-size: 40px;
    color: #f39c12;
}

.warning-sign {
    display: flex;
    gap: 30px;
    margin: 25px 0;
}

.warning-image {
    flex: 1;
    max-width: 300px;
}

.warning-content {
    flex: 2;
}

.action-needed {
    background-color: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.factors-grid, .efficiency-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.factor-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.factor-icon {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.factor-card h3, .factor-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.material-detail {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.material-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.material-image {
    flex: 1;
    max-width: 200px;
}

.material-description {
    flex: 3;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.pros-cons h4 {
    margin-bottom: 10px;
}

.pros h4 {
    color: var(--success-color);
}

.cons h4 {
    color: var(--accent-color);
}

.energy-stats, .energy-rating {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    margin: 25px 0;
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary-color);
}

.rating-stars {
    color: #f39c12;
}

.roofing-option {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.option-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.option-image {
    flex: 1;
    max-width: 300px;
}

.option-description {
    flex: 2;
}

@media (max-width: 992px) {
    .hero-section .container,
    .about-section .container {
        flex-direction: column;
    }
    
    .hero-content,
    .about-content,
    .hero-image,
    .about-image {
        flex: auto;
        width: 100%;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 30px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .newsletter-form input[type="email"] {
        width: 60%;
    }
    
    .service-detail-content,
    .service-detail-content.reverse,
    .contact-form-wrapper,
    .featured-article-card {
        flex-direction: column;
    }
    
    .contact-form-image,
    .service-detail-image,
    .featured-article-image {
        margin-top: 30px;
        order: -1;
    }
    
    .featured-article-content,
    .featured-article-image {
        flex: auto;
    }
    
    .material-content,
    .option-content,
    .warning-sign {
        flex-direction: column;
    }
    
    .material-image,
    .option-image,
    .warning-image {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-header h2,
    .service-detail-text h2 {
        font-size: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .cookie-options {
        flex-direction: column;
    }
    
    .cookie-option {
        width: 100%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 5px;
    }
    
    .contact-form-wrapper,
    .service-detail-section {
        padding: 30px 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .article-header h1,
    .thank-you-content h1 {
        font-size: 32px;
    }
    
    .article-intro {
        font-size: 18px;
    }
    
    .article-section h2 {
        font-size: 28px;
    }
    
    .warning-importance,
    .energy-stats {
        flex-direction: column;
        text-align: center;
    }
    
    .importance-icon,
    .stat-icon {
        margin: 0 auto 15px;
    }
    
    .task-item,
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-item:not(:last-child)::after {
        display: none;
    }
    
    .timeline-number {
        margin: 0 auto;
    }
    
    .timeline-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .site-header {
        padding: 10px 0;
    }
    
    .logo {
        height: 40px;
    }
    
    .section-header h2,
    .service-detail-text h2,
    .contact-form-content h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .thank-you-cta {
        flex-direction: column;
    }
}