﻿
/* PAGE BANNER */
.page-banner {
    background: linear-gradient(135deg, #0a2c5e, #1e3a8a);
    color: #fff;
    padding: 60px 0;
}

/* TITLES */
.section-title {
    color: #0a2c5e;
    font-weight: 700;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.highlight-box:hover {
    transform: translateY(-8px);
    background: #fff3e0;
}

/* IMAGES */
img {
    border-radius: 10px;
}

/* KNOW MORE BUTTON */
.btn-know {
    background: #ff9800;   /* theme orange */
    color: #fff;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    display: inline-block;
}

/* HOVER */
.btn-know:hover {
    background: #e65100;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255,152,0,0.4);
}

/* RULE SECTION */
.rules-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* CARD */
.rule-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* ICON */
.rule-card i {
    font-size: 24px;
    color: #ff7a00;
    min-width: 30px;
}

/* TEXT */
.rule-card p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

/* HOVER */
.rule-card:hover {
    transform: translateY(-5px);
    background: #fff3e0;
}

/* RULE LIST */
.rule-list {
    max-width: 900px;
    margin: auto;
}

/* ITEM */
.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* NUMBER */
.rule-number {
    font-size: 20px;
    font-weight: 700;
    color: #ff7a00;
    min-width: 40px;
}

/* TEXT */
.rule-item p {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

/* HOVER */
.rule-item:hover {
    transform: translateX(5px);
}

/* IMPORTANT RULE */
.rule-item.important {
    border-left: 5px solid #ff7a00;
    background: #fff3e0;
}

/* BOX */
.uniform-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* TITLE */
.uniform-title {
    color: #0a2c5e;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TABLE */
.uniform-table {
    border-radius: 10px;
    overflow: hidden;
}

/* HEADER */
.uniform-table thead {
    background: #0a2c5e;
    color: #fff;
}

/* ROWS */
.uniform-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

/* HOVER */
.uniform-table tbody tr:hover {
    background: #fff3e0;
}

/* CELL */
.uniform-table td, .uniform-table th {
    padding: 12px;
    text-align: center;
}

/* SECTION */
.contact-section {
    padding: 80px 0;
    background: #f9fafc;
}

/* BOX */
.contact-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* ITEM */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

/* ICON */
.contact-item i {
    font-size: 20px;
    color: #ff7a00;
    margin-top: 5px;
}

/* FORM */
.contact-form {
    background: #0a2c5e;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
}

/* INPUT */
.contact-form .form-control {
    border-radius: 8px;
}

/* MAP */
.map-section iframe {
    margin-top: 20px;
}