body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f7f9fc, #e0e6ed);
    color: #495057;
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #607c97;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    font-weight: bold;
    letter-spacing: 1px;
    color: #ffffff;
}

.navbar-nav .nav-item .nav-link {
    color: #ffffff;
    transition: color 0.3s;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #ff9800;
}


.navbar .btn-primary {
    background-color: #ff9800; /* Button background color distinct from navbar */
    color: #ffffff; /* Button text color */
    border: none; /* No border */
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.navbar .btn-primary:hover {
    background-color: #e68a00; /* Slightly darker shade on hover */
    color: #ffffff; /* Text color on hover */
}

.navbar .btn-primary:active {
    background-color: #cc7a00; /* Even darker shade when clicked */
    transform: scale(0.98); /* Slightly shrink the button when clicked */
}

.navbar .btn-primary:focus {
    outline: none; /* Remove outline when focused */
    box-shadow: 0 0 5px #ff9800; /* Add a glow effect */
}

.navbar-toggler {
    border-color: #ffffff; /* Border color of the button */
    background-color: #607c97; /* Background color of the button */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* White bars */
    width: 25px; /* Adjust size if necessary */
    height: 25px;
}

h2 {
    color: #1d3557;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

h3 {
    color: #1d3557;
    margin-top: 30px;
    font-weight: 700;
}

p, ul {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555555;
}

ul {
    padding-left: 20px;
}

.img-fluid {
    width: 100%;
    height: auto;
    max-width: 600px; /* Ensures a maximum width for large images */
    margin: 0 auto; /* Centers the image within its container */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #070707;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    color: wheat;
    margin: 0;
    font-size: 1.2em;
}

footer a {
    color: #ff9800;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffffff;
}

footer ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

.btn-primary {
    background-color: #f1e3cd; /* Bright orange background */
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 25px; /* Rounded corners */
    display: inline-block;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
}

.btn-primary:hover {
    background-color: #e0af65; /* Darker shade on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Shadow effect */
    transform: scale(1.05); /* Slightly enlarge the button */
}

.btn-primary:active {
    background-color: #ecd5b5; /* Even darker shade when clicked */
    transform: scale(0.98); /* Slightly shrink the button when clicked */
}


.navbar .btn-primary {
    background-color: #ff9800; /* Button background color distinct from navbar */
    color: #ffffff; /* Button text color */
    border: none; /* No border */
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
}

.navbar .btn-primary:hover {
    background-color: #e68a00; /* Slightly darker shade on hover */
    color: #ffffff; /* Text color on hover */
}

.navbar .btn-primary:active {
    background-color: #cc7a00; /* Even darker shade when clicked */
    transform: scale(0.98); /* Slightly shrink the button when clicked */
}

.navbar .btn-primary:focus {
    outline: none; /* Remove outline when focused */
    box-shadow: 0 0 5px #ff9800; /* Add a glow effect */
}
