@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
body {
margin: 0;
padding: 0;
background-color: #f8f9fc;
font-family: Arial, sans-serif;
font-family: "Roboto", sans-serif;
font-weight: 600;
font-style: normal;
}
:root {
--primary-color: #211c84;
--secondary-color: #4d55cc;
--accent-color: #7a73d1;
}
.header {
width: 100%;
height: 60px;
background-color: #ffffff;
padding: 10px 20px;
box-sizing: border-box;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 10;
border-bottom: 1px solid #d1d5db;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
font-family: "Poppins", sans-serif;
font-weight: 800;
font-style: normal;
}
.header i {
font-size: 26px;
color: #6c757d;
}
.header div {
font-size: 18px;
color: #333;
}
.header img {
width: 35px;
object-fit: contain;
}
.left-header {
display: flex;
gap: 15px;
align-items: center;
}
.header small {
color: #6c757d;
font-size: 12px;
margin-left: 10px;
}
.search-bar {
width: 100%;
max-width: 400px;
padding: 12px 15px;
font-size: 16px;
box-sizing: border-box;
border: 2px solid #ced4da;
border-radius: 30px;
outline: none;
background-color: #ffffff;
transition: 0.3s ease-in-out;
}
.search-bar:focus {
border-color: #0d6efd;
box-shadow: 0 0 10px rgba(13, 110, 253, 0.2);
}
.intro {
display: grid;
grid-template-rows: 1fr;
margin: 15px;
border-radius: 12px;
background: #eef2ff;
padding: 30px 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-style: normal;
}
.intro h1 {
color: #0d6efd;
margin: 10px 0;
font-size: 28px;
font-family: fantasy;
}
.intro p {
color: #0d6eff;
margin: 8px 0;
font-size: 16px;
}
@media (min-width: 768px) {
.intro {
grid-template-columns: 70% 30%;
align-items: center;
}
.intro h1 {
font-size: 32px;
}
.intro p {
font-size: 18px;
}
}
@media (min-width: 1024px) {
.header {
height: 70px;
padding: 15px 30px;
}
.header div {
font-size: 20px;
}
.search-bar {
max-width: 500px;
padding: 14px 18px;
}
.intro {
padding: 40px 30px;
}
.intro h1 {
font-size: 38px;
}
.intro p {
font-size: 20px;
}
}
.container {
max-width: 800px;
margin-top: 50px;
}
.accordion-button {
background-color: #ffffff;
font-weight: bold;
color: #0d6efd;
border-radius: 5px;
}
.accordion-button:focus {
box-shadow: none;
}
.accordion-button:not(.collapsed) {
background-color: #e7f1ff;
}
.accordion-body {
background-color: #ffffff;
font-size: 15px;
color: #333;
}
footer {
text-align: center;
padding: 10px;
background: #35424a;
color: #fff;
margin-top: 20px;
}