/* General Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}
ul {
  margin: 1em 0 1em 2em; /* top, right, bottom, left */
  list-style-type: disc; /* Ensure a standard bullet style */
}

li {
  margin-bottom: 0.5em; /* Some spacing between list items */
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #004080;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.logo {
    font-size: 24px;
    font-weight: 600;
    color: white;
    text-decoration: none;
}
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 400;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #ffcc00;
}

/* Hero Section */
.hero {
    background: url('../images/luca-bravo-9l_326FISzk-unsplash.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    padding: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.hero .hero-content {
    max-width: 800px;
}

/* Specific Hero for Training Page */
.training-hero {
    background: url('../images/luca-bravo-9l_326FISzk-unsplash.jpg') no-repeat center center/cover;
    height: 300px;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
h2 {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 15px;
}
p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.service {
    flex: 1;
    min-width: 280px;
    background: #eef;
    padding: 20px;
    border-radius: 5px;
    transition: 0.3s;
}
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Call to Action */
.cta {
    text-align: center;
    margin: 30px 0;
}
.cta a {
    display: inline-block;
    padding: 12px 25px;
    background: #004080;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: 0.3s;
}
.cta a:hover {
    background: #ffcc00;
    color: #004080;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #004080;
    color: white;
    margin-top: 50px;
}
.attribution {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
    color: #666;
}
.attribution a {
    color: #004080;
    text-decoration: none;
}
