/* Start custom CSS for html, class: .elementor-element-e10942c */<style>
    /* --- FONTS & BASICS --- */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

    .punalu-article-container {
        font-family: 'Poppins', sans-serif;
        color: #333;
        line-height: 1.7;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }

    /* --- VARIABLES --- */
    :root {
        --wpc-primary: #2c3e50;    /* Dark Blue/Grey */
        --wpc-accent: #d35400;     /* Wood Orange */
        --wpc-green: #27ae60;      /* Eco Green */
        --bg-light: #f9f9f9;
    }

    /* --- HERO SECTION --- */
    .punalu-hero {
        position: relative;
        /* Image 1: Decking Visual */
        background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://punalu.com/wp-content/uploads/2026/02/blog-1-3-.png');
        background-size: cover;
        background-position: center;
        border-radius: 15px;
        color: #fff;
        padding: 80px 40px;
        text-align: center;
        margin-bottom: 50px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .punalu-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.2;
        color:#d35400;
    }
    .punalu-hero p { font-size: 1.1rem; opacity: 0.9; }

    /* --- NEWS/FACTORY SECTION (Image 2) --- */
    .news-section {
        display: flex;
        align-items: center;
        gap: 40px;
        background: #f0f4f8; /* Industrial light blue/grey */
        padding: 40px;
        border-radius: 12px;
        margin-bottom: 60px;
        border-left: 5px solid var(--wpc-primary);
    }
    .news-text { flex: 1; }
    .news-text h2 { color: var(--wpc-primary); margin-top: 0; }
    .news-image { 
        flex: 1; 
        max-width: 450px;
    }
    .news-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: block;
    }

    /* --- TOP 5 REASONS LIST --- */
    .reasons-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .reason-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 30px;
        position: relative;
        padding-left: 90px; /* Space for number */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .reason-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        border-color: var(--wpc-accent);
    }
    
    /* Big Number Styling */
    .reason-num {
        position: absolute;
        left: 20px;
        top: 20px;
        font-size: 3.5rem;
        font-weight: 800;
        color: rgba(211, 84, 0, 0.15); /* Transparent Orange */
        line-height: 1;
    }
    .reason-card h3 { color: var(--wpc-primary); margin-top: 0; font-size: 1.4rem; }
    .reason-card ul { padding-left: 20px; margin-bottom: 0; }
    .reason-card li { margin-bottom: 8px; color: #555; }

    /* --- ECO HIGHLIGHT --- */
    .eco-highlight {
        background: #e8f5e9;
        color: var(--wpc-green);
        padding: 5px 10px;
        border-radius: 5px;
        font-weight: bold;
        font-size: 0.9rem;
        display: inline-block;
        margin-bottom: 10px;
    }

    /* --- FAQ SECTION --- */
    .faq-container {
        max-width: 900px;
        margin: 0 auto 50px auto;
    }
    .faq-container h2 { text-align: center; color: var(--wpc-primary); margin-bottom: 30px; }
    
    details.faq-item {
        background: #fff;
        border-bottom: 1px solid #eee;
        padding: 15px 10px;
        cursor: pointer;
        transition: background 0.2s;
    }
    details.faq-item:hover { background: #fcfcfc; }
    summary {
        font-weight: 600;
        color: #333;
        font-size: 1.1rem;
        list-style: none; /* Hides default triangle */
        position: relative;
        padding-right: 30px;
    }
    /* Custom + icon */
    summary::after {
        content: '+';
        position: absolute;
        right: 0;
        font-weight: bold;
        color: var(--wpc-accent);
        font-size: 1.5rem;
        line-height: 1;
    }
    details[open] summary::after { content: '-'; }
    .faq-answer {
        padding-top: 15px;
        color: #666;
        font-size: 0.95rem;
    }

    /* --- CONCLUSION BOX --- */
    .conclusion-box {
        background: var(--wpc-primary);
        color: white;
        padding: 40px;
        border-radius: 12px;
        text-align: center;
        margin-top: 50px;
    }
    .conclusion-box h2 { color: white; margin-top: 0; }
    .conclusion-box p { color: #ccc; }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
        .punalu-hero h1 { font-size: 1.8rem; }
        .news-section { flex-direction: column-reverse; } /* Image on top on mobile */
        .news-image { max-width: 100%; }
        .reason-card { padding-left: 20px; padding-top: 70px; } /* Adjust for number */
        .reason-num { font-size: 3rem; top: 15px; left: 15px; }
    }
</style>/* End custom CSS */