        /* Page Specific Styles */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://res.cloudinary.com/dc9kw1i5z/image/upload/f_auto,q_auto/v1777529506/LVP/img-thermodynamic-solar-block.jpg');
            background-size: cover;
            background-position: center;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-bottom: 0;
            position: relative;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .page-header-content h1 {
            font-size: 3.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .page-header-content p {
            font-size: 1.3rem;
            margin: 0 auto;
            opacity: 0.9;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .content-section {
            padding: 80px 0;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .intro-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--gray-text);
            margin-bottom: 60px;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-text strong {
            color: var(--lime);
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .section-title .small-label {
            display: block;
            margin-bottom: 30px;
            color: var(--lime);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .app-card {
            background: var(--white);
            border-radius: 20px;
            padding: 35px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .app-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--lime);
            transition: 0.4s ease;
            z-index: -1;
            border-radius: 20px;
        }

        .app-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(236, 94, 42, 0.2);
            border-color: transparent;
        }

        .app-card:hover::before {
            height: 100%;
        }

        .app-icon {
            width: 70px;
            height: 70px;
            background: rgba(236, 94, 42, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--lime);
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .app-card:hover .app-icon {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white);
            transform: scale(1.1) rotate(5deg);
        }

        .app-card h3 {
            font-size: 1.25rem;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .app-card:hover h3 {
            color: var(--white);
        }

        .cta-box {
            background: linear-gradient(135deg, #1a1a1a, #0A0A0A);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
            margin-bottom: 80px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(236, 94, 42, 0.15), transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-box h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .cta-box p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #ccc;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Conservation Box - Matching Commercial PV */
        .conservation-box {
            background: #ec5e2a;
            border-radius: 20px;
            padding: 40px;
            color: white;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
            box-shadow: 0 15px 40px rgba(236, 94, 42, 0.3);
        }

        .con-icon {
            flex: 0 0 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .con-text {
            flex: 1;
        }

        .con-text h3 {
            color: white;
            margin-bottom: 10px;
            font-size: 1.8rem;
        }

        .con-text p {
            font-size: 1.1rem;
            opacity: 0.95;
            line-height: 1.6;
            margin: 0;
        }
