/* ========== Global Styles ========== */

/* Color Palette */
:root {
    --primary-color: black; /* Dark Brown */
    --secondary-color: #FAC12C; /* Golden */
    --background-light: #F8F9FA; /* Light Grey */
    --text-dark: #333;
    --text-muted: #6c757d;
    --white: #ffffff;
    --black: #111;
    --hover-color: #FAC12C; /* Adjust as per your branding */
}

/* ========== Body Styling ========== */
body {
    font-family: Arial, sans-serif;
    background-color: var(--background-light);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    display:flex;
    flex-direction: column;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 20px;
    color: black;
    margin-bottom: 15px;
}

/* ========== Headings ========== */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    transition: color 0.3s ease-in-out;
}

h1 { font-size: 3.5em; }
h2 { font-size: 3em; }
h3 { font-size: 2.5em; }
h4 { font-size: 2em; }
h5 { font-size: 1.75em; }
h6 { font-size: 1.5em; }

h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover {
    color: var(--secondary-color);
}

/* ========== Paragraphs and Text ========== */
p {
    font-size: 20px;
    /* line-height: 1.6; */
    color: black;
    margin-bottom: 15px;
}

span {
    color: var(--text-dark);
    font-weight: normal;
}

.font-white {
    color: var(--white) !important;
}

/* ========== Buttons ========== */
.btn-primary {
    background: var(--primary-color) !important;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
}

.btn-primary:hover {
    background: var(--hover-color) !important;
}

/* ========== Cards & Containers ========== */
.card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.card-text {
    font-size: 16px;
    color: var(--text-muted);
}

/* ========== Images ========== */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========== Links ========== */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--hover-color);
}

/* ========== Utility Classes ========== */
.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.text-muted {
    color: var(--text-muted);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}
.mobile-content {
    display: none;
}

.desktop-content {
    display: block;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.75em; }
    h3 { font-size: 1.5em; }
    .w-90{
        max-width:90% !important;
    }
}