/* Reset and Base Styles */
:root {
    --royal-blue: #4169e1; /* Lighter Royal Blue */
    --gold: #FFD700; /* Gold */
    --emerald-green: #3CB371; /* Emerald Green */
    --emerald-green-dark: #2E8B57; /* Emerald Green Dark */
    --slate-gray: #708090; /* Slate Gray */
    --slate-gray-dark: #696969; /* Darker Slate Gray */
    --slate-gray-light: #808080; /* Lighter Slate Gray */
    --slate-gray-lighter: #A9A9A9; /* Even Lighter Slate Gray */
    --slate-gray-lightest: #D3D3D3; /* Even Lighter Slate Gray */
    --slate-gray-darkest: #2F4F4F; /* Darkest Slate Gray */
    --slate-gray-darker: #696969; /* Darker Slate Gray */
    --slate-gray-darkest: #2F4F4F; /* Darkest Slate Gray */
    --slate-gray-darker: #696969; /* Darker Slate Gray */
    --slate-gray-darkest: #2F4F4F; /* Darkest Slate Gray */
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
}

h2 {
    font-size: 2rem;
    color: #34495e;
}

h3 {
    font-size: 1.5rem;
    color: #34495e;
}

h4 {
    font-size: 1.25rem;
    color: #2c3e50;
}

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

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

a:hover {
    color: #2980b9;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #000080 0%, #4169e1 100%); /* Royal Blue Gradient */
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    color: white;
    text-decoration: none;
}

.logo h4 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 300;
}

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

.nav-item a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-item a:hover,
.nav-item.active a {
    background-color: rgba(255,255,255,0.2);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%); /* Gold Gradient */
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #000080; /* Royal Blue */
    color: white;
}

.btn-primary:hover {
    background-color: #4169e1; /* Lighter Royal Blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,128,0.3);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #000080; /* Royal Blue */
}

.btn-outline {
    background-color: transparent;
    color: #000080; /* Royal Blue */
    border: 2px solid #000080; /* Royal Blue */
}

.btn-outline:hover {
    background-color: #000080; /* Royal Blue */
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Cities Section */
.cities-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

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

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

.city-name {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.city-description {
    margin-bottom: 1.5rem;
    color: #666;
}

.city-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    background-color: #ecf0f1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #34495e;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
}

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

.category-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.category-item p {
    color: #666;
    font-size: 0.9rem;
}

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

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

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* City Page Styles */
.city-hero {
    background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%); /* Emerald Green Gradient */
    color: white;
    padding: 3rem 0;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb span {
    color: white;
}

.city-title, .hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.city-description, .hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Rental Categories */
.rental-categories {
    padding: 4rem 0;
}

.category-section {
    margin-bottom: 4rem;
}

.category-title {
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #000080; /* Royal Blue */
    display: inline-block;
}

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

.provider-card {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.provider-card:hover {
    border-color: #000080; /* Royal Blue */
    box-shadow: 0 5px 15px rgba(0,0,128,0.1);
    transform: translateY(-2px);
}

.provider-card h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.provider-card .phone,
.provider-card .address,
.provider-card .website {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.provider-card .website {
    color: #000080; /* Royal Blue */
    font-weight: 500;
}

.provider-card .website:hover {
    color: #4169e1; /* Lighter Royal Blue */
}

/* City CTA */
.city-cta {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer Styles */
.site-footer {
    background-color: #708090; /* Slate Gray */
    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;
}

.site-footer p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-nav {
    list-style: none;
}

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

.footer-nav a {
    color: #bdc3c7;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #95a5a6;
    padding: 2rem 0 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000080; /* Royal Blue */
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #4169e1; /* Lighter Royal Blue */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .nav-item a {
        padding: 0.5rem 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .city-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .hero-cta,
    .cta-section,
    .city-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #000080; /* Royal Blue */
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .city-card,
    .category-item,
    .provider-card {
        border: 2px solid #000;
    }
    
    .btn-outline {
        border-width: 3px;
    }
}

/* Fix for white text on white background in city cards */
.city-card .city-name,
.city-card .city-description,
.city-card .city-stats .stat {
    color: #333; /* Darken text for visibility */
}



/* Additional styles for new pages */

/* About Page Styles */
.about-content {
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: #000080; /* Royal Blue */
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #DAA520; /* Gold */
    padding-bottom: 0.5rem;
}

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

.service-item,
.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #000080; /* Royal Blue */
}

.service-item h4,
.feature-item h4 {
    color: #000080; /* Royal Blue */
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

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

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

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3CB371; /* Emerald Green */
}

.contact-method h4 {
    color: #000080; /* Royal Blue */
    margin-bottom: 0.5rem;
}

.contact-form-element {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-message {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.error-message {
    background-color: #f2dede;
    color: #a94442;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    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: #000080; /* Royal Blue */
}

.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e1e8ed;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #000080; /* Royal Blue */
    margin-bottom: 1rem;
}

.business-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #3CB371 0%, #2E8B57 100%); /* Emerald Green */
    color: white;
    border-radius: 10px;
}

.business-section p {
    color: white;
}

.business-section h2 {
    color: white;
    border-bottom: 2px solid #DAA520; /* Gold */
}

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

.benefit-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-item h4 {
    color: white;
    margin-bottom: 1rem;
}

.business-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

/* Privacy and Terms Page Styles */
.privacy-content,
.terms-content {
    padding: 4rem 0;
}

.privacy-section,
.terms-section {
    margin-bottom: 3rem;
}

.privacy-section h2,
.terms-section h2 {
    color: #000080; /* Royal Blue */
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #DAA520; /* Gold */
    padding-bottom: 0.5rem;
}

.privacy-section h3,
.terms-section h3 {
    color: #3CB371; /* Emerald Green */
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-section ul,
.terms-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .features-grid,
    .faq-grid,
    .business-benefits {
        grid-template-columns: 1fr;
    }
    
    .business-section {
        padding: 2rem;
    }
}


/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--emerald-green), var(--emerald-green-dark));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 4rem 0;
}

.blog-grid {
    margin-bottom: 3rem;
}

.featured-articles {
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

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

.blog-card.featured {
    border-left: 4px solid var(--gold);
}

.blog-card-content {
    padding: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-meta .category {
    background: var(--royal-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-meta .date {
    color: var(--slate-gray);
    font-size: 0.9rem;
}

.blog-meta .read-time {
    color: var(--slate-gray);
    font-size: 0.9rem;
}

.blog-card h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--slate-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-card p {
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--royal-blue-dark);
}

.blog-categories {
    margin-bottom: 3rem;
}

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

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card h3 {
    color: var(--slate-gray-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.category-card p {
    color: var(--slate-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.article-count {
    background: var(--emerald-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.recent-articles .articles-list {
    display: grid;
    gap: 1.5rem;
}

.blog-cta {
    background: var(--royal-blue);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-cta h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.blog-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Article Styles */
.blog-article {
    padding: 2rem 0 4rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: var(--slate-gray);
    margin: 0 auto;
    line-height: 1.6;
}

.article-content {
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: var(--slate-gray-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--emerald-green);
}

.content-section h3 {
    color: var(--slate-gray-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-section p {
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-section li {
    color: var(--slate-gray);
    margin-bottom: 0.5rem;
}

.rental-options, .trend-highlights, .considerations, .opportunities {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.rental-option, .trend-item, .consideration, .opportunity {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--emerald-green);
}

.rental-option h3, .trend-item h3, .consideration h3, .opportunity h3 {
    color: var(--slate-gray-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

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

.price-range {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--gold);
}

.price-range h3 {
    color: var(--royal-blue);
    margin-bottom: 1rem;
    margin-top: 0;
}

.regional-analysis {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.region {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--royal-blue);
}

.region h3 {
    color: var(--slate-gray-dark);
    margin-bottom: 1rem;
    margin-top: 0;
}

.region p strong {
    color: var(--royal-blue);
}

.tips-list, .investment-tips {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.tips-list li, .investment-tips li {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--emerald-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.related-articles {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .price-ranges {
        grid-template-columns: 1fr;
    }
    
    .article-navigation {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}


/* Blog Preview Section on Homepage */
.blog-preview {
    background: #f8f9fa;
    padding: 4rem 0;
}

.blog-preview .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-preview .section-title {
    font-size: 2.5rem;
    color: var(--slate-gray-dark);
    margin-bottom: 1rem;
}

.blog-preview .section-description {
    font-size: 1.1rem;
    color: var(--slate-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.blog-preview-content {
    padding: 2rem;
}

.blog-preview-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-preview-meta .category {
    background: var(--emerald-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-preview-meta .date {
    color: var(--slate-gray);
    font-size: 0.9rem;
}

.blog-preview-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-preview-card h3 a {
    color: var(--slate-gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-preview-card h3 a:hover {
    color: var(--royal-blue);
}

.blog-preview-card p {
    color: var(--slate-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-preview-cta {
    text-align: center;
}

/* Responsive Design for Blog Preview */
@media (max-width: 768px) {
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-preview .section-title {
        font-size: 2rem;
    }
}

