/* --- 1. CORE VARIABLES & RESET --- */
:root {
    --font: "Segoe UI",SegoeUI,"Helvetica Neue",Helvetica,Arial,sans-serif;
    --black: #1D1D1F;
    --grey: #6B6B6B;
    --light-bg: #fff; 
    --border: #EFEFEF;
    --accent: #1a8917;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    margin: 0; padding: 0;
    font-family: var(--font);
    color: var(--black);
    line-height: 1.6;
    background: var(--light-bg);
    font-size: 1rem;
}

/* --- 2. LAYOUT & CONTAINER --- */
.container { 
    max-width: 740px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* --- 3. HERO SECTION --- */
.hero { padding: 60px 0; border-bottom: 1px solid var(--border); }
.hero h1 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: #000; margin-bottom: 15px; font-weight: 700; }
.hero h2 { font-family: var(--font); font-size: 2.2rem; line-height: 1.15; margin: 0 0 20px 0; font-weight: 700; letter-spacing: -0.5px; }
.hero p { color: var(--black); margin-bottom: 30px; }

/* --- 4. LOGO --- */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    letter-spacing: -0.05em;
}

.logo img {
    height: 25px;
    width: auto;
    display: block;
}

.logo a {
    font-family: 'Inter';
    color: #0A2647;
    text-decoration: none;
}

.logo a span {
    font-weight: 400; 
    opacity: 0.8;
    color:#20B2E4;
}

/* --- 5. BUTTONS --- */
.btn-primary, .btn-secondary { padding: 12px 24px; border-radius: 99px; text-decoration: none; font-weight: 500; font-size: 0.95rem; text-align: center; transition: 0.2s; }
.btn-secondary { border: 1px solid var(--border); color: var(--black); }

.btn-primary {
    background: var(--black); 
    color: #fff !important;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    line-height: 1.2;
}

.btn-primary-pro {
    background: #A4262C; 
    color: #ffffff !important;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    text-align: center;
    transition: 0.2s;
    line-height: 1.2;
}

.btn-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.btn-tool-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #f2f2f2;
    color: #000 !important;
}

.btn-primary-pro:hover {
    background-color: #8E1F25;
    color: #ffffff !important;
}

/* --- 6. SECTIONS --- */
section { padding: 60px 0; }
h3 { font-family: var(--font); font-size: 2.0rem; margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

/* --- 7. CTA BUTTONS --- */
.cta-buttons { display: flex; gap: 12px; }

/* --- 8. FOOTER --- */
footer { padding: 40px 0; border-top: 1px solid var(--border); background: #f2f2f2; }

.copyright-footer {
    font-size: 0.8rem; 
    color: var(--grey); 
    margin-top: 20px;
    margin-bottom: 20px;
}

.copyright-footer a {
    text-decoration: none;
    color: inherit;
}

/* --- 9. TABLE STYLING --- */
.table-responsive {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: 8px;
    background: #ffffff;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.95rem;
    color: #333;
    text-align: left;
}

.table thead {
    background-color: #f8f9fa;
    border-bottom: 1px solid #1a1a1a;
}

.table th {
    padding: 18px 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    font-size: 0.75rem;
    color: #1a1a1a;
    background: #fff;
}

.table tbody tr {
    border-bottom: 1px solid #edf2f7;
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: #fcfcfc;
}

.table td {
    padding: 20px 24px;
    line-height: 1.6;
    vertical-align: top;
}

.table td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    width: 20%;
}

.table td:nth-child(2) {
    color: #4a5568;
    width: 35%;
}

.table td:last-child {
    color: #2d3748;
    width: 45%;
}

.note {
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 12px;
    text-align: center;
    font-style: italic;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid var(--border);
}

/* --- 10. LEGAL LIST --- */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    counter-reset: legal-counter;
}

.legal-list li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #333;
    font-size: 1.05rem;
}

.legal-list li::before {
    counter-increment: legal-counter;
    content: counter(legal-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.legal-list li:hover {
    color: var(--primary);
    transition: color 0.3s ease;
}

.legal-list li ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.legal-list li ul li {
    padding-left: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.legal-list li ul li::before {
    content: none;
}

/* --- 11. RESPONSIVE --- */
@media (max-width: 767px) {
    body { padding-bottom: 90px !important; }
    .hero h2 { font-size: 2.0rem; }
    h3 { font-size: 1.7rem; }
    .logo a { font-size: 1.25rem; }
    .cta-buttons { flex-direction: column; }
}

@media (min-width: 768px) {
    .cta-buttons { flex-direction: row; }
    .hero { padding: 50px 0; }
    .hero h2 { font-size: 2.5rem; }
    .hero p { max-width: 90%; }
    section { padding: 50px 0; }
    .logo a { font-size: 1.5rem; }
}

/* Table responsive adjust */
@media (max-width: 768px) {
    .table {
        font-size: 0.85rem;
    }
    .table th, .table td {
        padding: 12px 16px;
    }
}