/* =========================
PAGE LAYOUT
========================= */

.page-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* =========================
SECTION HEADINGS
========================= */

.page-container h1 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-container h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.page-container h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #e0bc1b;
    margin-top: 8px;
    border-radius: 10px;
}

/* =========================
TEXT STYLE
========================= */

.page-container p {
    color: #444;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* =========================
CARD SYSTEM (SHARED)
========================= */

.ui-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 18px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.ui-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* =========================
ABOUT LIST STYLE
========================= */

.ui-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.ui-list li {
    position: relative;
    padding-right: 18px;
    margin-bottom: 10px;
    color: #444;
    line-height: 1.8;
}

.ui-list li::before {
    content: "✓";
    color: #e0bc1b;
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* =========================
CONTACT GRID
========================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.contact-item {
    background: #fff;
    border-radius: 14px;
    padding: 18px;

    display: flex;
    align-items: center;
    gap: 12px;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.25s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* icon box */
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;

    background: #f3f4f6;
    color: #e0bc1b;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info {
    font-size: 0.95rem;
    color: #222;
    font-weight: 500;
}

/* link style */
.contact-info a {
    color: #222;
    text-decoration: none;
}

.contact-info a:hover {
    color: #e0bc1b;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}