@font-face {
    font-family: "smiley";
    src: url(../font/Outfit-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "smiley";
}

a { text-decoration: none; }
li { list-style: none; }
img { width: 100%; display: block; object-fit: cover; }
button { border: 0; outline: 0; background: transparent; cursor: pointer; }

/* ── Layout ── */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #aab6bd;
}

/* ── Header ── */
.info-header {
    background-image: url(../images/header-bg.jpg);
    background-repeat: repeat-x;
    background-color: #fff;
    padding: 12px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

.info-header__inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-header__logo {
    width: 160px;
}

.info-header__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
    padding: 6px 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    transition: background .2s, color .2s;
}

.info-header__back:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* ── Main content ── */
.info-wrap {
    flex: 1;
    max-width: 860px;
    width: 100%;
    margin: 36px auto 48px;
    padding: 0 20px;
}

/* ── Hero banner ── */
.info-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    border-radius: 14px;
    padding: 48px 40px;
    margin-bottom: 32px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.info-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(77,166,255,.15) 0%, transparent 70%);
}

.info-hero__icon {
    font-size: 48px;
    margin-bottom: 14px;
    display: block;
    position: relative;
}

.info-hero__title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
}

.info-hero__sub {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255,255,255,.65);
    position: relative;
}

/* ── Cards ── */
.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    border-left: 4px solid #4da6ff;
}

.info-card__heading {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card__heading .ic {
    font-size: 18px;
}

.info-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin-bottom: 10px;
}

.info-card p:last-child { margin-bottom: 0; }

.info-card ul {
    padding-left: 0;
    margin-top: 8px;
}

.info-card ul li {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    padding: 4px 0 4px 20px;
    position: relative;
}

.info-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4da6ff;
    font-size: 12px;
    top: 6px;
}

/* sub-heading inside card */
.info-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 14px 0 6px;
}

/* ── Highlight box ── */
.info-highlight {
    background: #f0f7ff;
    border: 1px solid #c8e0ff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 12px;
    font-size: 14px;
    color: #2c5282;
    line-height: 1.7;
}

/* ── Contact card special ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 4px;
}

.contact-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 18px 20px;
    border: 1px solid #e9ecef;
}

.contact-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #4da6ff;
    margin-bottom: 6px;
}

.contact-item__value {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.contact-item__desc {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* ── About feature grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 4px;
}

.feature-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 18px 16px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.feature-item__icon { font-size: 28px; margin-bottom: 8px; }
.feature-item__name { font-size: 13px; font-weight: 700; color: #333; }
.feature-item__desc { font-size: 12px; color: #888; margin-top: 4px; }

/* ── Footer ── */
.info-footer {
    background-color: #000;
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 14px 20px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-footer a { color: #fff; }
.info-footer a:hover { color: #4da6ff; }

.info-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 16px;
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .info-hero { padding: 36px 24px; }
    .info-hero__title { font-size: 24px; }
    .info-card { padding: 22px 20px; }
    .contact-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .info-header__logo { width: 120px; }
}

@media (max-width: 420px) {
    .feature-grid { grid-template-columns: 1fr; }
}
