:root {
    --navy-blue: #0c1d36;
    --navy-blue-dark: #071224;
    --gold: #d4a347;
    --gold-dark: #b8862d;
    --bg-color: #f5f6f8;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy-blue);
    line-height: 1;
}

.gold-text {
    color: var(--gold);
}

.logo-sub {
    font-size: 14px;
    letter-spacing: 2px;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--navy-blue);
    font-weight: 600;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--gold);
}

.btn-primary, .btn-large {
    background-color: var(--gold);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover, .btn-large:hover {
    background-color: var(--gold-dark);
}

.btn-large {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.hero-content .hero-desc {
    font-size: 16px;
    max-width: 700px;
    margin: 20px auto 30px;
}

/* Services */
.services-section {
    background-color: var(--navy-blue-dark);
    padding: 30px 0;
    color: var(--white);
}

.services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.service-item h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Plans Section */
.plans-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--navy-blue);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.card-header {
    padding: 20px;
    text-align: center;
    color: var(--white);
}

.blue-header { background-color: var(--navy-blue); }
.gold-header { background-color: var(--gold); }

.card-header h3 {
    font-size: 18px;
    text-transform: uppercase;
}

.card-body {
    padding: 30px 20px;
    flex-grow: 1;
    text-align: center;
}

.card-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 40px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    display: inline-block;
}

.plan-features li {
    margin-bottom: 10px;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.plan-features li::before {
    content: '✔';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-footer {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.blue-footer { background-color: var(--navy-blue); }
.gold-footer { background-color: var(--gold); }

/* Method Section */
.method-section {
    background-color: #e2e8f0;
    padding: 40px 0;
    text-align: center;
    font-size: 20px;
    color: var(--navy-blue);
}

/* Footer */
.footer {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid #1e3a5f;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-cta h2 {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 10px;
}

.footer-contact p {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-tags {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 2px;
}
