body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    /* Light gray background */
    color: #333;
    /* Dark text color */
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}



header {
    background-color: #f8f8f8;
    padding: 10px 20px;
    /* display: flex; */
    justify-content: space-between;
    align-items: left;
    /* flex-wrap: wrap; */
}

header .logo {
    font-size: 24px;
    font-weight: bold;
    text-align: start;
    padding: 10px 20px;
}

header .color {
    color: #004080;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

header nav ul li {
    margin-left: 20px;
}

/* header nav ul li a {
    text-decoration: none;
    color: #333;
} */

.hero {
    text-align: center;
    padding: 30px 20px;
    background-color: #e8e8e8;
}

.hero img {
    width: 150px;
    border-radius: 50%;
}

.hero h1 {
    margin-top: 20px;
    font-size: 28px;
}

.hero p {
    font-size: 16px;
    color: #666;
}

.hero .button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

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

section {
    padding: 30px 20px;
    margin: 20px 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #004080;
    display: inline-block;
    padding-bottom: 10px;
}

section p,
section ul,
section iframe {
    margin-bottom: 20px;
}

.project img {
    max-width: 80px;
    max-height: 60px;
    height: auto;
}

.project {
    margin-bottom: 20px;
}

#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-bottom: 5px;
}

#contact input,
#contact textarea,
#contact button {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact button {
    background-color: #004080;
    color: white;
    border: none;
    cursor: pointer;
}

#contact button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
}

footer nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

footer nav ul li {
    margin-left: 20px;
}

/* footer nav ul li a {
    text-decoration: none;
    color: #333;
} */

footer p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    header {
        justify-content: center;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
    }

    header nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    section h2 {
        font-size: 20px;
    }

    footer nav ul {
        flex-direction: column;
        align-items: center;
    }

    footer nav ul li {
        margin: 10px 0;
    }
}


a {
    color: #004080; /* Material blue */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }
  
  a:hover {
    color: #005cb8; /* Darker blue on hover */
  }