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

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefcf7;
    color: #1e2a2e;
    scroll-behavior: smooth;
}

.hero-section {
    background: linear-gradient(135deg, #f5f0e8 0%, #e9e0d3 100%);
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 3px;
        background: #c7a86b;
        border-radius: 10px;
    }

.text-gold {
    color: #b47c44;
}

.btn-gold {
    background-color: #b47c44;
    color: white;
    border-radius: 40px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

    .btn-gold:hover {
        background-color: #9b6234;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(180,124,68,0.25);
        color: white;
    }

.btn-outline-gold {
    border: 2px solid #b47c44;
    background: transparent;
    color: #b47c44;
    border-radius: 40px;
    padding: 10px 28px;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-outline-gold:hover {
        background: #b47c44;
        color: white;
    }

.card-hover {
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 28px;
    background: white;
    box-shadow: 0 10px 25px -12px rgba(0,0,0,0.1);
}

    .card-hover:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 36px -16px rgba(0,0,0,0.15);
    }

.expert-badge {
    background: #f3eee7;
    border-radius: 60px;
    padding: 6px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #b47c44;
    display: inline-block;
}

.icon-circle {
    background: #f5ede3;
    width: 58px;
    height: 58px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #b47c44;
}

.area-tag {
    background: white;
    border-radius: 40px;
    padding: 8px 20px;
    margin: 6px;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #eee6dc;
    transition: all 0.2s;
}

    .area-tag:hover {
        border-color: #c7a86b;
        color: #b47c44;
    }

footer {
    background: #1e2a2e;
    color: #ddddd0;
}

.installation-icon-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    border-left: 4px solid #c7a86b;
    background: #faf7f2;
    padding: 1rem 2rem;
    border-radius: 60px 20px 60px 20px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0 40px;
        text-align: center;
    }

    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}
