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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: -5px;
}

.logo span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 400;
}

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

.nav-menu a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563eb;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #334155;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    padding: 100px 20px;
    background: #f8fafc;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 100px 20px;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.services-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.services-text a:hover {
    text-decoration: underline;
}

.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Expertise Areas */
.expertise-areas {
    padding: 100px 20px;
    background: #f8fafc;
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.expertise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.expertise-card h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-card p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.expertise-card a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

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

.cta .btn-primary {
    background: white;
    color: #2563eb;
}

.cta .btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

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

.cta .btn-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.newsletter {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .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 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 20px;
    }

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

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

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .features h2,
    .expertise-areas h2,
    .cta h2 {
        font-size: 2rem;
    }

    .feature-card,
    .expertise-card {
        padding: 1.5rem;
    }
}

/* Page Hero Styles */
.page-hero {
    margin-top: 80px;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

/* Maintenance Overview */
.maintenance-overview {
    padding: 80px 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.overview-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-left: 4px solid #2563eb;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Category Sections */
.maintenance-categories {
    padding: 80px 20px;
    background: #f8fafc;
}

.maintenance-categories h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.category-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-section h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 0.5rem;
}

.category-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.category-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.category-text strong {
    color: #1e293b;
    font-weight: 600;
}

.category-checklist {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.category-checklist h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.category-checklist ul {
    list-style: none;
}

.category-checklist li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.category-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Planning Section */
.maintenance-planning {
    padding: 80px 20px;
}

.planning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.planning-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.planning-content h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.planning-timeline {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.planning-timeline h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

.timeline-item {
    display: flex;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-period {
    font-weight: 600;
    color: #2563eb;
    min-width: 100px;
    margin-right: 1rem;
}

.timeline-tasks {
    color: #64748b;
    flex: 1;
}

/* DIY vs Professional */
.diy-vs-professional {
    padding: 80px 20px;
    background: #f8fafc;
}

.diy-vs-professional h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.diy-section,
.professional-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.diy-section {
    border-top: 4px solid #10b981;
}

.professional-section {
    border-top: 4px solid #f59e0b;
}

.diy-section h3,
.professional-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.diy-section h3 {
    color: #10b981;
}

.professional-section h3 {
    color: #f59e0b;
}

.task-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.task-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.task-item h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.task-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tools Section */
.maintenance-tools {
    padding: 80px 20px;
}

.maintenance-tools h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.tools-content > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.tool-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tool-category h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.tool-category ul {
    list-style: none;
}

.tool-category li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.tool-category li::before {
    content: '🔧';
    position: absolute;
    left: 0;
}

.safety-note {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.safety-note h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.safety-note p {
    color: #92400e;
    line-height: 1.6;
}

/* Expert Tips */
.expert-tips {
    padding: 80px 20px;
    background: #f8fafc;
}

.expert-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.tip-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    font-family: serif;
}

.tip-author {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.tip-content p {
    color: #64748b;
    line-height: 1.6;
    font-style: italic;
}

/* Next Steps */
.next-steps {
    padding: 80px 20px;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-content > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.action-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.action-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for new sections */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-grid,
    .planning-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .category-section {
        padding: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-period {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
}

/* Renovation specific styles */
.renovation-intro {
    padding: 80px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.renovation-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Phase Timeline */
.renovation-phases {
    padding: 80px 20px;
    background: #f8fafc;
}

.renovation-phases h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.phase-item {
    display: flex;
    margin-bottom: 3rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.phase-item::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 4px;
    height: 100%;
    background: #2563eb;
    transform: translateY(-50%);
}

.phase-number {
    background: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.phase-content h3 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.phase-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.phase-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Popular Renovations */
.popular-renovations {
    padding: 80px 20px;
}

.popular-renovations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.renovation-type {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #2563eb;
}

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

.renovation-header h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
}

.budget-range {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.renovation-details p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.renovation-details strong {
    color: #1e293b;
    font-weight: 600;
}

.renovation-tips {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.renovation-tips h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.renovation-tips ul {
    list-style: none;
}

.renovation-tips li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.renovation-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Mistakes Section */
.renovation-mistakes {
    padding: 80px 20px;
    background: #f8fafc;
}

.renovation-mistakes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.mistake-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

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

.mistake-card h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mistake-description p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.mistake-description strong {
    color: #1e293b;
    font-weight: 600;
}

/* ROI Section */
.renovation-roi {
    padding: 80px 20px;
}

.renovation-roi h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.roi-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.roi-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.roi-chart {
    margin-bottom: 3rem;
}

.roi-item {
    display: grid;
    grid-template-columns: 2fr 1fr 3fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.high-roi {
    border-left: 4px solid #10b981;
}

.medium-roi {
    border-left: 4px solid #f59e0b;
}

.low-roi {
    border-left: 4px solid #ef4444;
}

.roi-project {
    font-weight: 600;
    color: #1e293b;
}

.roi-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.high-roi .roi-percentage {
    color: #10b981;
}

.medium-roi .roi-percentage {
    color: #f59e0b;
}

.low-roi .roi-percentage {
    color: #ef4444;
}

.roi-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.roi-factors {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
}

.roi-factors h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.factor {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
}

.factor h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.factor p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Timeline Section */
.renovation-timeline {
    padding: 80px 20px;
    background: #f8fafc;
}

.renovation-timeline h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.timeline-content > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.project-timeline {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.timeline-phase {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: 150px 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.phase-duration {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.phase-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.phase-tasks ul {
    list-style: none;
    margin: 0;
}

.phase-tasks li {
    color: #64748b;
    padding: 0.2rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.95rem;
}

.phase-tasks li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.timeline-tips {
    background: white;
    padding: 2rem;
    border-radius: 16px;
}

.timeline-tips h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.advice-item {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.advice-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advice-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Sustainable Renovation */
.sustainable-renovation {
    padding: 80px 20px;
}

.sustainable-renovation h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.sustainability-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.sustainability-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.sustainability-area {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.sustainability-area h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    border-bottom: 2px solid #10b981;
    padding-bottom: 0.5rem;
}

.area-content > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.efficiency-measures,
.material-choices,
.water-solutions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.measure,
.material,
.solution {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.measure h4,
.material h4,
.solution h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.measure p,
.material p,
.solution p {
    color: #064e3b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Checklist Section */
.renovation-checklist {
    padding: 80px 20px;
    background: #f8fafc;
}

.renovation-checklist h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.checklist-content > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.checklist-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.checklist-section h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    position: relative;
}

.checklist-item:hover {
    background-color: #f8fafc;
}

.checklist-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.checklist-item input[type="checkbox"]:checked + .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checklist-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.checklist-item span:not(.checkmark) {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive Design for renovation page */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phase-item {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .renovation-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .roi-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .timeline-phase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phase-duration {
        justify-self: start;
        width: fit-content;
    }
    
    .factors-grid,
    .planning-advice {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mistakes-grid,
    .sustainability-areas,
    .checklist-sections {
        grid-template-columns: 1fr;
    }
    
    .renovation-type,
    .mistake-card,
    .sustainability-area,
    .checklist-section {
        padding: 1.5rem;
    }
}

/* Contractor Selection Specific Styles */
.contractor-importance {
    padding: 80px 20px;
}

.importance-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.importance-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.importance-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.importance-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contractor-stat {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-visual {
    margin-bottom: 1rem;
}

.stat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stat-number {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Selection Process */
.selection-process {
    padding: 80px 20px;
    background: #f8fafc;
}

.selection-process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-item::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2563eb;
    border-radius: 2px;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.step-number {
    background: #2563eb;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-header h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.step-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.step-details h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-details ul {
    list-style: none;
}

.step-details li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.step-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.step-details strong {
    color: #1e293b;
    font-weight: 600;
}

.pro-tip {
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
}

.pro-tip h4 {
    color: #92400e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pro-tip p {
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

/* Search Methods */
.search-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.search-method {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.search-method h4 {
    color: #0c4a6e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.search-method p {
    color: #0c4a6e;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.specialist-focus {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.specialist-focus h4 {
    color: #065f46;
    margin-bottom: 1rem;
    font-weight: 600;
}

.specialist-focus p {
    color: #064e3b;
    margin: 0;
    line-height: 1.6;
}

/* Screening Checklist */
.screening-checklist {
    margin-top: 2rem;
}

.screening-checklist h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.check-item {
    display: flex;
    align-items: flex-start;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.check-icon {
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.check-content h5 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.check-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Quote Process */
.quote-process {
    margin-top: 2rem;
}

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

.quote-step {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.quote-step h5 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quote-step p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.red-flags {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    margin-top: 2rem;
}

.red-flags h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    font-weight: 600;
}

.red-flags ul {
    list-style: none;
}

.red-flags li {
    color: #dc2626;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.red-flags li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* Comparison Framework */
.comparison-framework {
    margin-top: 2rem;
}

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

.comparison-area {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.comparison-area h5 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.comparison-area ul {
    list-style: none;
}

.comparison-area li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
}

.comparison-area li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.price-analysis {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    margin-top: 2rem;
}

.price-analysis h4 {
    color: #92400e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-analysis p {
    color: #92400e;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.price-analysis p:last-child {
    margin-bottom: 0;
}

/* Reference Process */
.reference-process {
    margin-top: 2rem;
}

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

.reference-step {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.reference-step h5 {
    color: #0c4a6e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reference-step p {
    color: #0c4a6e;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.reference-questions {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.reference-questions h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.reference-questions ul {
    list-style: none;
}

.reference-questions li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.reference-questions li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    background: #e0e7ff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Final Considerations */
.final-considerations {
    margin-top: 2rem;
}

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

.consideration {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.consideration h5 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.consideration p {
    color: #064e3b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contract-essentials {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.contract-essentials h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contract-essentials p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contract-essentials ul {
    list-style: none;
}

.contract-essentials li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.contract-essentials li::before {
    content: '📋';
    position: absolute;
    left: 0;
}

/* Contractor Types */
.contractor-types {
    padding: 80px 20px;
}

.contractor-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contractor-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contractor-category {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.category-header h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
}

.category-scope {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.category-content strong {
    color: #1e293b;
    font-weight: 600;
}

.category-tips {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.category-tips h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-tips ul {
    list-style: none;
}

.category-tips li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.category-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

.specialist-examples {
    margin-top: 2rem;
}

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

.specialist {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.specialist h5 {
    color: #065f46;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.specialist p {
    color: #064e3b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.specialist strong {
    color: #065f46;
    font-weight: 600;
}

.maintenance-services {
    margin-top: 2rem;
}

.maintenance-services h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.maintenance-services ul {
    list-style: none;
}

.maintenance-services li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.maintenance-services li::before {
    content: '🔧';
    position: absolute;
    left: 0;
}

/* Common Mistakes */
.common-mistakes {
    padding: 80px 20px;
    background: #f8fafc;
}

.common-mistakes h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mistakes-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.mistakes-overview p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.mistake-item {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mistake-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mistake-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
}

.mistake-header h3 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 600;
}

.mistake-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.mistake-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Working Relationship */
.working-relationship {
    padding: 80px 20px;
}

.working-relationship h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.relationship-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.relationship-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.relationship-aspects {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.relationship-aspect {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.relationship-aspect h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.aspect-content > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.communication-tips h4,
.expectations-areas h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.communication-tips ul {
    list-style: none;
}

.communication-tips li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.communication-tips li::before {
    content: '📞';
    position: absolute;
    left: 0;
}

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

.expectation-area {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.expectation-area h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.expectation-area p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.respect-guidelines h4 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.respect-item {
    background: #f0fdf4;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.respect-item h5 {
    color: #065f46;
    margin-bottom: 1rem;
    font-weight: 600;
}

.respect-item ul {
    list-style: none;
}

.respect-item li {
    color: #064e3b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.respect-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Project Monitoring */
.project-monitoring {
    padding: 80px 20px;
    background: #f8fafc;
}

.project-monitoring h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.monitoring-content > p {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.monitoring-phase {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.monitoring-phase h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.phase-checklist h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.phase-checklist ul {
    list-style: none;
    margin-bottom: 2rem;
}

.phase-checklist li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.phase-checklist li::before {
    content: '□';
    position: absolute;
    left: 0;
    color: #2563eb;
    content: '□';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.documentation-tips,
.punchlist-process {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.documentation-tips h4,
.punchlist-process h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.documentation-tips p,
.punchlist-process p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contractor Database */
.contractor-database {
    padding: 80px 20px;
}

.contractor-database h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.database-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.database-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.contractor-categories-db {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.category-db {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.category-db h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.contractors-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contractor-profile {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.contractor-profile h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contractor-details p {
    color: #64748b;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contractor-details strong {
    color: #1e293b;
    font-weight: 600;
}

.contractor-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.contractor-contact p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.contractor-contact a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contractor-contact a:hover {
    text-decoration: underline;
}

.database-disclaimer {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #f59e0b;
}

.database-disclaimer h3 {
    color: #92400e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.database-disclaimer p {
    color: #92400e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.database-disclaimer p:last-child {
    margin-bottom: 0;
}

.database-disclaimer a {
    color: #92400e;
    text-decoration: underline;
    font-weight: 500;
}

/* Legal Protection */
.legal-protection {
    padding: 80px 20px;
    background: #f8fafc;
}

.legal-protection h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.protection-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.protection-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.protection-area {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.protection-area h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.protection-details h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.protection-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.protection-details li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.protection-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.protection-details strong {
    color: #1e293b;
    font-weight: 600;
}

.protection-details p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.escalation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.escalation-step {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.escalation-step h5 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.escalation-step p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Selection Checklist */
.selection-checklist {
    padding: 80px 20px;
}

.selection-checklist h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.checklist-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.checklist-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Responsive Design for contractor page */
@media (max-width: 768px) {
    .importance-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .category-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-methods,
    .checklist-grid,
    .quote-steps,
    .comparison-areas,
    .reference-steps,
    .considerations-grid,
    .specialist-list,
    .expectations-areas,
    .respect-grid {
        grid-template-columns: 1fr;
    }
    
    .contractor-categories-db,
    .protection-areas,
    .monitoring-phases {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .step-item,
    .contractor-category,
    .protection-area,
    .relationship-aspect {
        padding: 2rem;
    }
    
    .contractor-profile {
        padding: 1.5rem;
    }
}

/* Seasonal Maintenance Specific Styles */
.seasonal-intro {
    padding: 80px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.intro-benefits {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.intro-benefits h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.benefit-text h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
    font-weight: 600;
    font-size: 1rem;
}

.benefit-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

/* Seasonal Calendar */
.seasonal-calendar {
    padding: 80px 20px;
    background: #f8fafc;
}

.seasonal-calendar h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.season-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.season-tab {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.season-tab:hover {
    border-color: #2563eb;
    background: #f8fafc;
}

.season-tab.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.season-content {
    display: none;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.season-content.active {
    display: block;
}

.season-header {
    margin-bottom: 3rem;
    text-align: center;
}

.season-header h3 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.season-header p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.monthly-tasks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.month-section {
    border-left: 4px solid #2563eb;
    padding-left: 2rem;
}

.month-section h4 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.task-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.task-category h5 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.task-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.task-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.task-priority {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.task-priority.high {
    background: #fef2f2;
    color: #dc2626;
}

.task-priority.medium {
    background: #fef3c7;
    color: #d97706;
}

.task-priority.low {
    background: #f0fdf4;
    color: #16a34a;
}

.task-content strong {
    color: #1e293b;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.task-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Maintenance Tips */
.maintenance-tips {
    padding: 80px 20px;
}

.maintenance-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.tip-category {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tip-category h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.tip-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tip-item h4 {
    color: #1e293b;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tip-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Emergency Checklist */
.emergency-checklist {
    padding: 80px 20px;
    background: #f8fafc;
}

.emergency-checklist h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.emergency-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.emergency-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.emergency-category {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.emergency-category h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 0.5rem;
}

.emergency-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.emergency-item {
    border-left: 4px solid #dc2626;
    padding: 2rem;
    background: #fef2f2;
    border-radius: 12px;
}

.emergency-item.urgent {
    border-left-color: #dc2626;
    background: #fef2f2;
}

.emergency-item.high {
    border-left-color: #f59e0b;
    background: #fef3c7;
}

.emergency-item.medium {
    border-left-color: #3b82f6;
    background: #eff6ff;
}

.emergency-header {
    margin-bottom: 1.5rem;
}

.urgency-level {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.emergency-item.urgent .urgency-level {
    background: #dc2626;
    color: white;
}

.emergency-item.high .urgency-level {
    background: #f59e0b;
    color: white;
}

.emergency-item.medium .urgency-level {
    background: #3b82f6;
    color: white;
}

.emergency-header h4 {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

.emergency-actions p {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.emergency-actions ol {
    color: #64748b;
    line-height: 1.6;
}

.emergency-actions li {
    margin-bottom: 0.5rem;
}

.emergency-contacts {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.emergency-contacts h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.contact-category h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-category ul {
    list-style: none;
}

.contact-category li {
    color: #64748b;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-category li:last-child {
    border-bottom: none;
}

.contact-category strong {
    color: #1e293b;
    font-weight: 600;
}

/* Maintenance Tracker */
.maintenance-tracker {
    padding: 80px 20px;
}

.maintenance-tracker h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.tracker-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tracker-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.tracker-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.year-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.year-selector label {
    color: #1e293b;
    font-weight: 600;
}

.year-selector select {
    padding: 0.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #1e293b;
    font-weight: 500;
}

.progress-overview {
    flex: 1;
    max-width: 400px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-label {
    color: #1e293b;
    font-weight: 600;
    white-space: nowrap;
}

.progress-bar {
    flex: 1;
    height: 20px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.progress-percentage {
    color: #1e293b;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

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

.tracker-season {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tracker-season h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.tracker-tasks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tracker-task {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #e2e8f0;
}

.tracker-task:hover {
    background-color: #f8fafc;
}

.tracker-task input[type="checkbox"] {
    display: none;
}

.task-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tracker-task input[type="checkbox"]:checked + .task-checkmark {
    background-color: #10b981;
    border-color: #10b981;
}

.tracker-task input[type="checkbox"]:checked + .task-checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.task-text {
    flex: 1;
    color: #1e293b;
    font-weight: 500;
}

.task-month {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
}

.tracker-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Professional Help */
.professional-help {
    padding: 80px 20px;
    background: #f8fafc;
}

.professional-help h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.help-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.help-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.help-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.help-category {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.help-category h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 0.5rem;
}

.help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.diy-tasks,
.professional-tasks {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.diy-tasks {
    border-left: 4px solid #10b981;
}

.professional-tasks {
    border-left: 4px solid #f59e0b;
}

.diy-tasks h4 {
    color: #065f46;
    margin-bottom: 1rem;
    font-weight: 600;
}

.professional-tasks h4 {
    color: #92400e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.diy-tasks ul,
.professional-tasks ul {
    list-style: none;
}

.diy-tasks li,
.professional-tasks li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #64748b;
}

.diy-tasks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.professional-tasks li::before {
    content: '🔧';
    position: absolute;
    left: 0;
}

.specialist-recommendation {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #10b981;
}

.specialist-recommendation p {
    color: #064e3b;
    margin: 0;
    line-height: 1.6;
}

.specialist-recommendation strong {
    color: #065f46;
    font-weight: 600;
}

.cost-benefit {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cost-benefit h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.cost-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cost-factor {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.cost-factor h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cost-factor ul {
    list-style: none;
}

.cost-factor li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.cost-factor li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Responsive Design for seasonal page */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .season-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .season-tab {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
    }
    
    .tracker-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .progress-overview {
        max-width: none;
    }
    
    .tracker-seasons {
        grid-template-columns: 1fr;
    }
    
    .help-content,
    .cost-factors {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .season-content,
    .help-category,
    .emergency-category,
    .tracker-season {
        padding: 2rem;
    }
    
    .task-item {
        padding: 1rem;
    }
    
    .tracker-task {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .task-checkmark {
        margin-right: 0;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .tracker-controls,
    .tracker-actions,
    .season-tabs {
        display: none !important;
    }
    
    .season-content {
        display: block !important;
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .month-section {
        page-break-inside: avoid;
    }
    
    .task-item {
        page-break-inside: avoid;
    }
}

/* Contact Page Specific Styles */
.contact-intro {
    padding: 80px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.intro-services {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.intro-services h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.service-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.service-text h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-size: 1rem;
}

.service-text p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Methods */
.contact-methods {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-option {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.option-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.option-header h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    flex: 1;
}

.option-time {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.option-content > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-details {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-details p {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.email-tips,
.phone-tips,
.visit-preparation,
.visit-includes {
    background: #f0fdf4;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.email-tips h4,
.phone-tips h4,
.visit-preparation h4,
.visit-includes h4 {
    color: #065f46;
    margin-bottom: 1rem;
    font-weight: 600;
}

.email-tips ul,
.phone-tips ul,
.visit-preparation ul,
.visit-includes ul {
    list-style: none;
}

.email-tips li,
.phone-tips li,
.visit-preparation li,
.visit-includes li {
    color: #064e3b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.email-tips li::before,
.phone-tips li::before,
.visit-preparation li::before,
.visit-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 20px;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    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: #2563eb;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.checkbox-group label {
    color: #64748b;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-group a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    padding: 80px 20px;
}

.emergency-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.emergency-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.emergency-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.emergency-card {
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.emergency-card.urgent {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
}

.emergency-card.high {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.emergency-card.medium {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.emergency-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.emergency-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.emergency-header h3 {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

.emergency-content p {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.emergency-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.emergency-content li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.emergency-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.emergency-action {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.emergency-action p {
    margin-bottom: 0.5rem;
}

.emergency-action p:last-child {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.specialist-contacts {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.specialist-contacts h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.specialist-contact {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.specialist-contact h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.specialist-contact p {
    color: #64748b;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.specialist-contact p:last-child {
    font-size: 0.9rem;
    font-style: italic;
}

.specialist-contact strong {
    color: #1e293b;
    font-weight: 600;
}

.specialist-contact a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.specialist-contact a:hover {
    text-decoration: underline;
}

/* Office Info */
.office-info {
    padding: 80px 20px;
    background: #f8fafc;
}

.office-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.office-details {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.office-details h3 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.office-address {
    margin-bottom: 2rem;
}

.office-address p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.office-address strong {
    color: #1e293b;
    font-weight: 600;
}

.office-address a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.office-address a:hover {
    text-decoration: underline;
}

.office-directions,
.office-facilities {
    margin-bottom: 2rem;
}

.office-directions h4,
.office-facilities h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.direction-method {
    margin-bottom: 1.5rem;
}

.direction-method h5 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.direction-method p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.office-facilities ul {
    list-style: none;
}

.office-facilities li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.office-facilities li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.office-map {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
}

.map-content {
    padding: 3rem;
    text-align: center;
}

.map-content h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-content p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.map-mock {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
    color: #64748b;
}

.map-mock p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 2rem;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

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

.team-member {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.member-photo {
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto;
}

.member-info h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-experience {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.member-specialties {
    text-align: left;
    margin-bottom: 2rem;
}

.member-specialties h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-specialties ul {
    list-style: none;
}

.member-specialties li {
    color: #64748b;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.member-specialties li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.testimonial {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #2563eb;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    color: #64748b;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: #1e293b;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.rating {
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.final-cta h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta > .cta-content > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

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

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-option h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-option p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-option .btn {
    background: white;
    color: #2563eb;
}

.cta-option .btn:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Responsive Design for contact page */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-grid,
    .specialist-grid,
    .testimonials-grid,
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .option-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-option,
    .office-details,
    .team-member,
    .testimonial {
        padding: 2rem;
    }
    
    .emergency-card {
        padding: 1.5rem;
    }
    
    .map-content {
        padding: 2rem;
    }
}