/*
Theme Name: qea
Theme URI: https://quickexpertadvice.com
Author: qea
Version: 1
*/
 :root {
            --primary-color: #b11928;
            --secondary-color: #ef6424;
            --accent-color: #f19e99;
            --light-color: #f8f9fa;
            --dark-color: white;
            --black-color: #100d0d;
            --success-color: #4bb543;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light-color);
            color: var(--dark-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        #cwe{
            color: var(--black-color);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        header {
            padding: 30px 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .hero {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 60px 0;
        }
        
        .hero-content {
            text-align: center;
            width: 100%;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            color: #666;
        }
        
        .options-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .option-card {
            background: white;
            border-radius: 12px;
            /* padding: 40px 30px; */
            padding: 52px 30px 64px;;
            width: 100%;
            max-width: 400px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .option-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .option-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        }
        
        .option-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .option-card h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--black-color);
        }
        
        .option-card p {
            color: #666;
            margin-bottom: 25px;
        }
        
        .btnld {
            display: inline-block;
            padding: 12px 30px;
            background: #DA581C;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .btnld:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .btnld-outline {
            background-color: transparent;
            border: 2px solid var(--secondary-color);
            color: var(--secondary-color);
        }
        
        .btnld-outline:hover {
            background-color: var(--secondary-color);
            color: white;
            border: 2px solid var(--secondary-color);

        }
        
        footer {
            text-align: center;
            padding: 20px 0;
            background-color: white;
            margin-top: auto;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }

        a:hover, a:focus {
            color: #ef6424;
            outline: none;
        }
        #content{
            padding-bottom:0;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .options-container {
                flex-direction: column;
                align-items: center;
            }
            
            .option-card {
                max-width: 100%;
            }
        }