/* Start custom CSS for html, class: .elementor-element-aa63ed3 */<style>
    /* --- FONTS & BASICS --- */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

    .louver-container {
        font-family: 'Poppins', sans-serif;
        color: #444;
        line-height: 1.8;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        background: #fff;
    }

    /* --- VARIABLES --- */
    :root {
        --louver-wood: #8B5A2B;   /* Natural Wood Tone */
        --louver-dark: #2c3e50;   /* Architectural Slate */
        --louver-light: #ecf0f1;  /* Soft Grey */
    }

    /* --- HERO SECTION (Image 1) --- */
    .louver-hero {
        position: relative;
        background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,07)), url('https://punalu.com/wp-content/uploads/2026/03/blog-3-1.png');
        background-size: cover;
        background-position: center;
        height: 500px;
        border-radius: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        margin-bottom: 60px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .louver-hero h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        max-width: 900px;
        line-height: 1.2;
        color:#8B5A2B;
    }
    .louver-hero p { font-size: 1.2rem; max-width: 700px; opacity: 0.9; }

    /* --- SPLIT SECTIONS (Text + Image) --- */
    .louver-row {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 80px;
    }
    .louver-row.reverse { flex-direction: row-reverse; }
    
    .louver-text { flex: 1; }
    .louver-img { 
        flex: 1; 
        position: relative;
    }
    .louver-img img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        display: block;
        transition: transform 0.4s ease;
    }
    .louver-img img:hover { transform: scale(1.02); }

    /* Headings with vertical line accent */
    .louver-container h2 {
        color: var(--louver-dark);
        font-size: 2rem;
        border-left: 5px solid var(--louver-wood);
        padding-left: 20px;
        margin-bottom: 25px;
    }

    /* --- FEATURE GRID (3 Cards) --- */
    .louver-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }
    .louver-card {
        background: var(--louver-light);
        padding: 35px;
        border-radius: 12px;
        transition: transform 0.3s, background 0.3s;
        border-bottom: 4px solid transparent;
    }
    .louver-card:hover {
        transform: translateY(-10px);
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-bottom-color: var(--louver-wood);
    }
    .card-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
    
    /* List Styling */
    .louver-list { list-style: none; padding: 0; }
    .louver-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
    }
    .louver-list li::before {
        content: '•';
        color: var(--louver-wood);
        font-size: 1.5rem;
        position: absolute;
        left: 0;
        top: -5px;
    }

    /* --- FAQ SECTION --- */
    .faq-wrapper {
        max-width: 800px;
        margin: 0 auto 60px auto;
        border: 1px solid #eee;
        border-radius: 12px;
        padding: 20px;
    }
    details.louver-faq {
        border-bottom: 1px solid #eee;
        padding: 15px;
        cursor: pointer;
    }
    details.louver-faq:last-child { border-bottom: none; }
    summary { font-weight: 600; color: var(--louver-dark); }
    .faq-content { padding-top: 10px; color: #666; font-size: 0.95rem; }

    /* --- CONCLUSION --- */
    .louver-footer {
        background: var(--louver-dark);
        color: white;
        text-align: center;
        padding: 50px 20px;
        border-radius: 15px;
    }
    .louver-footer h2 { border: none; color: white; padding: 0; }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .louver-hero h1 { font-size: 2rem; }
        .louver-row, .louver-row.reverse { flex-direction: column; gap: 30px; }
        .louver-img { width: 100%; }
        .louver-container h2 { font-size: 1.6rem; }
    }
</style>/* End custom CSS */