/* ========== Base ========== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #0a3043;
    background-color: #f5f7fb;
}

a {
    color: #0f8fbf;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ========== Layout wrapper ========== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px 40px 18px;
}

/* ========== Header / Nav / Hero ========== */

header {
    background: linear-gradient(135deg, #0f8fbf 0%, #0c7399 100%);
    color: #ffffff;
    padding: 20px 0 26px 0;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

header .top-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

header .container {
    background: rgba(255, 255, 255, 0.12);
    padding-bottom: 28px;
    border-radius: 0 0 22px 22px;
    position: relative;
}

header .container > * {
    position: relative;
    z-index: 2;
}


.site-title {
    font-size: 2rem;
    font-weight: 700;
}

.site-tagline {
    font-size: 1.05rem;
    margin-top: 4px;
    opacity: 0.95;
}

/* nav */

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

nav a {
    color: #ffffff;
    font-size: 0.98rem;
    padding: 6px 12px;
    border-radius: 999px;
    transition: background 0.2s ease;
}

nav a:hover,
nav a.active {
    background: rgba(255, 255, 255, 0.22);
    text-decoration: none;
}

/* hero band used only on home */

.hero {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1 1 320px;
}

.hero-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 22px 24px 24px 24px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(0, 0, 0, 0.04);
    background-image: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.hero-title {
    font-size: 2.05rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #092e42;
}

.hero-sub {
    font-size: 1rem;
    margin-bottom: 16px;
}

.hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* feature icon grid in hero */

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.hero-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f8fbf;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;   /* <<< new: keeps text on one line */
    line-height: 1;        /* tighter vertical alignment */
}


.icon-circle.alt {
    background: #14a3b8;
}

.icon-label {
    font-size: 0.9rem;
}

/* ========== Main content ========== */

main h1 {
    font-size: 1.9rem;
    margin-top: 0;
    margin-bottom: 10px;
    color: #083547;
}

main h2 {
    font-size: 1.35rem;
    margin-top: 22px;
    margin-bottom: 8px;
    color: #0f8fbf;
    font-weight: 600;
}

main p {
    margin-bottom: 10px;
}

main ul {
    margin-top: 4px;
    padding-left: 20px;
}

.section-box {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 18px 20px 20px 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(15, 40, 66, 0.12);
    border: 1px solid #dde4ee;
}

/* two-column layouts */

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.column {
    flex: 1 1 290px;
}

/* ========== Buttons ========== */

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 9px 18px;
    background-color: #0f8fbf;
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background 0.18s ease, transform 0.08s ease;
}

.btn.secondary {
    background-color: #ffffff;
    color: #0f8fbf;
    border: 1px solid #0f8fbf;
}

.btn:hover {
    background-color: #0c7399;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn.secondary:hover {
    background-color: #e8f4f8;
}

/* ========== Tables ========== */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

th,
td {
    padding: 8px;
    border-bottom: 1px solid #dde4ee;
    text-align: left;
    font-size: 0.95rem;
}

th {
    background-color: #e8f4f8;
    font-weight: 600;
}

/* ========== Forms ========== */

form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 0.95rem;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #c0ccd7;
    font-size: 0.95rem;
}

form textarea {
    min-height: 120px;
}

form input[type="submit"] {
    margin-top: 14px;
    padding: 9px 20px;
    background-color: #0f8fbf;
    color: #ffffff;
    border-radius: 999px;
    border: none;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.08s ease;
}

form input[type="submit"]:hover {
    background-color: #0c7399;
    transform: translateY(-1px);
}

/* ========== Footer ========== */

footer {
    background-color: #061f2b;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 12px 0;
    margin-top: 8px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

/* ========== Responsive tweaks ========== */

@media (max-width: 640px) {
    header {
        padding-bottom: 24px;
    }

    .hero-card {
        padding: 20px 18px;
    }

    .hero-title {
        font-size: 1.7rem;
    }
}

.hero-card,
.hero-card * {
    color: #09384e !important;
    opacity: 1 !important;
}

.icon-circle.oneclick {
    font-size: 0.6rem;   /* smaller text so “1-CLICK” fits */
}

