:root {
    --bg-color: #B1BCC3;     /* Light Grey from Palette */
    --card-bg: #FFFFFF;
    --text-primary: #0F2C5C; /* Dark Blue from Palette */
    --text-secondary: #2A4D9B; /* Light Blue from Palette */
    --accent: #64003C;       /* Deep Maroon from Palette */
    --accent-hover: #78003C; /* Lighter Maroon */
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #0F2C5C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-logo { height: 40px; }

.nav-links a {
    color: #B1BCC3;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.cta-link {
    background-color: var(--accent);
    padding: 8px 18px;
    border-radius: 4px;
    color: white !important;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0F2C5C 0%, #2A4D9B 100%);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.highlight { color: #B1BCC3; }

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover { background-color: var(--accent-hover); }

.features-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 5%;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 5px 20px rgba(15, 44, 92, 0.1);
    border-top: 4px solid var(--text-secondary);
}

.pricing-section {
    padding: 60px 20px;
    background: #0F2C5C; /* Dark background for pricing area */
}

.pricing-card {
    background: white;
    max-width: 450px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 10px 0;
}

.period { font-size: 1rem; color: #666; font-weight: 400; }
.setup-fee { color: var(--accent); font-weight: bold; margin-bottom: 30px; }

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    color: #444;
}

.checkout-form { margin-top: 30px; }

.promo-box { margin-bottom: 20px; text-align: left; }
.promo-box label { display: block; font-size: 0.9em; margin-bottom: 5px; color: #666; }
.promo-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.btn-full { width: 100%; }

.secure-text { font-size: 0.8rem; color: #888; margin-top: 15px; }

footer {
    text-align: center;
    padding: 40px;
    background: #0F2C5C;
    color: #B1BCC3;
}
footer a { color: white; text-decoration: none; margin: 0 10px; }