.fwl-container {
    font-family: inherit;
    color: #333;
    background-color: #fcfbfa;
    padding-bottom: 50px;
}
.fwl-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
.fwl-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}
.fwl-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: bold;
}
.fwl-about-section {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
    align-items: center;
}
.fwl-about-text { flex: 1; min-width: 280px; }
.fwl-about-image img { width: 100%; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.fwl-card-box {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    background: #f7f3ee;
    border: 1px solid #e3dbd0;
    border-radius: 8px;
    padding: 30px;
}
.fwl-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}
@media(max-width: 768px) { .fwl-grid-two { grid-template-columns: 1fr; } }
.fwl-pill-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.fwl-pill-container.center { justify-content: center; }
.fwl-pill {
    background: #fff;
    border: 1px solid #dcd6cd;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #444;
}
.fwl-services-section, .fwl-faq-section, .fwl-footer-section {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
    text-align: center;
}
.fwl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}
@media(max-width: 768px) { .fwl-services-grid { grid-template-columns: 1fr; } }
.fwl-service-card {
    background: #443;
    color: #fff;
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 2000px rgba(0,0,0,0.4);
    font-weight: bold;
}
.fwl-accordion { text-align: left; margin-top: 20px; }
.fwl-accordion-header {
    width: 100%;
    background: #fff;
    border: 1px solid #dcd6cd;
    padding: 15px;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}
.fwl-accordion-body { display: none; padding: 10px 15px; background: #fff; margin-bottom: 10px; border-radius: 6px; }
.fwl-btn-estimate {
    display: inline-block;
    background: #a05a2c;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}
.fwl-btn-estimate:hover { background: #854922; color: #fff; }