/*
Theme Name: Title 24 Energy Services
Author: Your Name
Description: A custom theme for HERS rating and Indoor Lighting ATE services.
Version: 1.0
*/
<style>
        :root {
            --primary-color: #0A2540;
            --secondary-color: #20C997;
            --text-color: #333;
            --bg-light: #F8F9FA;
        }
        body, html {
            margin: 0; padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-color);
            line-height: 1.6;
        }
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo { font-size: 1.5rem; font-weight: bold; color: var(--secondary-color); }
        nav a {
            color: white; text-decoration: none;
            margin-left: 20px; font-weight: 500;
        }
        nav a:hover { color: var(--secondary-color); }
        .hero {
            background: linear-gradient(rgba(10, 37, 64, 0.8), rgba(10, 37, 64, 0.8)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 { font-size: 3rem; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px; }
        .btn {
            background-color: var(--secondary-color); color: white;
            padding: 12px 30px; text-decoration: none;
            border-radius: 5px; font-weight: bold; font-size: 1.1rem;
        }
        .btn:hover { background-color: #1aa179; }
        .services { padding: 80px 5%; background-color: var(--bg-light); text-align: center; }
        .services h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 50px; }
        .grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .card {
            background: white; padding: 30px; border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-top: 4px solid var(--secondary-color);
            text-align: left;
        }
        .card h3 { color: var(--primary-color); }
        footer {
            background-color: var(--primary-color); color: white;
            text-align: center; padding: 30px 20px; margin-top: 50px;
        }
    </style>
