body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    display: block; /* Changed from none to block */
}

.hero {
    background-color: #001f3f;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 200px; /* Adjust size as needed */
    height: auto;
    /* No background color specified to keep transparency */
}

.hero h1 {
    font-size: 2em;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #6495ED;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    font-size: 0.9em;
}

.btn.secondary {
    background-color: #003366;
}

.btn:hover {
    background-color: #0056b3;
}

.features {
    padding: 40px 20px;
    text-align: center;
    background-color: #ffffff;
}

.features h2 {
   margin-bottom: 20px;
}

.feature-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 20px;
   max-width: 1000px;
   margin: 0 auto;
}

.feature {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.feature img {
   max-height: 60px;
   margin-bottom: 10px;
}


.about {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
   margin-bottom: 20px;
}

.about-content {
   max-width: 1000px;
   margin: 0 auto;
   display: flex;
   align-items: center;
   gap: 20px;
}

.about-content img {
   max-height: 80px;
}

.about-content p {
   text-align: justify;
}


footer {
    background-color: #001f3f;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

footer a {
   color: #fff;
   text-decoration: none;
   padding: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

.footer-content {
  padding: 10px;
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8em;
    }
    .buttons {
       flex-direction: column;
       gap: 10px;
       align-items: center;
    }
    .about-content {
       flex-direction: column;
       gap: 20px;
    }
}