*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.5;
}

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

.text-center {
    text-align: center;
}

/* DISCLAIMER */
.top-disclaimer-bar {
    background-color: #ffedd5;
    border-bottom: 1px solid #fed7aa;
    padding: 12px 0;
    color: #7c2d12;
    font-size: 13px;
}

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

.icon-warning {
    display: table-cell;
    vertical-align: middle;
    width: 30px;
    padding-right: 10px;
}

.top-disclaimer-bar p {
    display: table-cell;
    vertical-align: middle;
}

/* HEADER */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.header-container::after {
    content: "";
    display: table;
    clear: both;
}

.logo-area {
    float: left;
    height: 40px;
    line-height: 40px;
}

.logo-icon {
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    vertical-align: middle;
}

.logo-text .accent-text {
    color: #d97706;
}

.main-nav {
    float: left;
    margin-left: 50px;
    height: 40px;
    line-height: 40px;
}

.main-nav ul {
    list-style: none;
}

.main-nav ul li {
    display: inline-block;
    margin-right: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 15px;
}

.main-nav ul li a.active {
    color: #0f172a;
    font-weight: 600;
}

.header-cta {
    float: right;
    height: 40px;
    line-height: 40px;
}

.btn-secondary-sm {
    display: inline-block;
    border: 2px solid #0f172a;
    color: #0f172a;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

/* ABOUT HERO */
.about-hero {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.badge {
    display: inline-block;
    background-color: #f1f5f9;
    color: #334155;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-hero h1 {
    font-size: 36px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-lead {
    font-size: 18px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* ABOUT CONTENT */
.about-content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-grid::after {
    content: "";
    display: table;
    clear: both;
}

.about-text-side {
    float: left;
    width: 50%;
    padding-right: 40px;
}

.about-text-side h2 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text-side p {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.metrics-grid {
    display: table;
    width: 100%;
    margin-top: 30px;
}

.metric-item {
    display: table-cell;
    width: 50%;
}

.metric-item h3 {
    font-size: 32px;
    color: #d97706;
    font-weight: 800;
}

.metric-item p {
    font-size: 13.5px;
    color: #64748b;
}

.about-image-side {
    float: right;
    width: 50%;
    text-align: right;
}

.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
    max-width: 100%;
    height: auto;
    border: 1px solid #e2e8f0;
}

/* VALUES */
.values-section {
    padding: 80px 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.section-title {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 40px;
    font-weight: 700;
}

.values-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.value-card {
    display: table-cell;
    padding: 0 15px;
    vertical-align: top;
}

.value-icon {
    background-color: #e2e8f0;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    text-align: center;
    line-height: 60px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

/* FOOTER */
.main-footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 60px 0 0 0;
    border-top: 1px solid #1e293b;
}

.footer-container::after {
    content: "";
    display: table;
    clear: both;
}

.footer-brand-side {
    float: left;
    width: 40%;
    padding-right: 40px;
}

.footer-brand-side .logo-area {
    float: none;
    margin-bottom: 15px;
}

.footer-brand-side .logo-text {
    color: #ffffff;
}

.footer-tagline {
    font-size: 13.5px;
    margin-bottom: 20px;
}

.copyright {
    font-size: 12px;
    color: #475569;
}

.footer-links-side {
    float: left;
    width: 30%;
}

.footer-links-side h4 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-links-side ul {
    list-style: none;
}

.footer-links-side ul li {
    margin-bottom: 10px;
}

.footer-links-side ul li a {
    color: #94a3b8;
    text-decoration: none;
}

.bottom-disclaimer-box {
    margin-top: 50px;
    background-color: #020617;
    padding: 25px 0;
    color: #64748b;
    font-size: 12px;
}

@media (max-width: 768px) {
    .about-text-side, .about-image-side, .footer-brand-side, .footer-links-side {
        float: none !important;
        width: 100% !important;
        padding-right: 0 !important;
    }
    .about-image-side {
        text-align: center;
        margin-top: 30px;
    }
    .values-grid {
        display: block !important;
    }
    .value-card {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 30px;
    }
    .main-nav { display: none; }
}