:root {
    --primary-color: #0b2545;
    --secondary-color: #134074;
    --accent-color: #8da9c4;
    --light-bg: #f4f6f9;
    --text-dark: #1f2421;
    --text-light: #ffffff;
    --alert-bg: #fff3cd;
    --alert-border: #ffeeba;
    --alert-text: #856404;
    --success-color: #2b9348;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

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

/* Disclaimer Styling */
.top-disclaimer {
    background-color: var(--alert-bg);
    border-bottom: 1px solid var(--alert-border);
    color: var(--alert-text);
    padding: 12px 0;
    font-size: 0.85rem;
    text-align: justify;
}

/* Header styling */
.main-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    color: var(--text-light);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-accent {
    color: var(--accent-color);
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-lead {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.hero-actions .btn {
    margin-right: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
}

.btn-large {
    background-color: #d90429;
    color: white;
}

.btn-large:hover {
    background-color: #b3001b;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-small {
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.badge-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.badge-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Services */
.services-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Table styling */
.table-section {
    padding: 0 0 80px 0;
}

.table-responsive {
    overflow-x: auto;
}

.control-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.control-table th, .control-table td {
    padding: 15px 20px;
    text-align: left;
}

.control-table th {
    background-color: var(--primary-color);
    color: white;
}

.control-table tr:nth-child(even) {
    background-color: var(--light-bg);
}

.status-ready {
    color: var(--success-color);
    font-weight: bold;
}

/* Footer Styling */
.main-footer {
    background-color: #05101e;
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.logo-footer {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #1e293b;
    margin-bottom: 20px;
}

.footer-disclaimer-text {
    font-size: 0.75rem;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
}

@media(max-width: 768px) {
    .hero-grid, .services-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-flex {
        flex-direction: column;
        gap: 15px;
    }
}