/* styles.css */


/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: #337ab7;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #337ab7;
}

a:hover {
    color: #23527c;
}


/* Header Styles */

header {
    background-color: #337ab7;
    padding: 20px;
    text-align: center;
    color: #fff;
}

header a {
    color: #fff;
}

header a:hover {
    color: #ccc;
}


/* Navigation Styles */

.navbar {
    background-color: #337ab7;
    padding: 10px;
    border: none;
    border-radius: 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.navbar-toggler {
    border: none;
    padding: 10px;
    font-size: 18px;
    line-height: 1;
}

.navbar-toggler:hover {
    background-color: #23527c;
}

.navbar-nav {
    margin-top: 10px;
}

.nav-item {
    margin-right: 20px;
}

.nav-link {
    color: #fff;
    font-size: 18px;
}

.nav-link:hover {
    color: #ccc;
}


/* Jumbotron Styles */

.jumbotron {
    background-color: #337ab7;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.jumbotron h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.jumbotron p {
    font-size: 24px;
    margin-bottom: 40px;
}

.jumbotron .btn {
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 0;
}


/* Main Content Styles */

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.card {
    margin-bottom: 20px;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.card-text {
    font-size: 18px;
    margin-bottom: 20px;
}


/* Footer Styles */

footer {
    background-color: #337ab7;
    padding: 10px;
    text-align: center;
    color: #fff;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #ccc;
}