/* Reset some default styling */
body, h1, h2, h3, p, ul, li, a, img {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    /*background-color: rgb(102, 153, 255);*/
   background-color:  #226;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header h1{
	color: #ff9800;
	
   
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px;
    color: #333;
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin-right: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #ff9800;
}

/* Section styles */
.section {
    padding: 4rem 0;
    text-align: center;
}

/* About section styles */
.about h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about h2 {
    font-size: 1.8rem;
    margin-top: 30px;
}

.about p, .values {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.highlight {
    color: #ff9800;
    font-weight: bold;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    text-align: left
}
/* Footer styles */
footer {
    background-color: #224;
    color: #fff;
    text-align: center;
    padding: 1rem;
    position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}