/* CSS Variables */
:root {
    --primary-blue: #0055A5;
    --primary-blue-alt: #1E90FF;
    --growth-green: #2ECC71;
    --growth-green-alt: #008000;
    --premium-gold: #DAA520;
    --premium-gold-alt: #FFD700;
    --energy-orange: #FF6200;
    --energy-orange-alt: #FFA500;
    --pure-white: #FFFFFF;
    --dark-text: #333333;
    --light-gray: #f5f7fa;
    --medium-gray: #e2e8f0;
    --transition-base: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

/* Pricing section call-to-action */
.pricing-cta {
    text-align: center;
    margin: 40px 0 20px;
    padding: 20px 0;
}

.pricing-cta .btn-primary {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Optional hover effect */
.pricing-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
