

body{
    background-image: url(assets/images/body.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.container{
    width: 1024px;
    margin-left: auto;
    margin-right: auto;
} 

header{
    height: 118px;
    background-color: rgba(255, 255, 255, 0.288);
    text-align: center;
}

nav{
    background-color: rgba(0, 0, 0, 0.315);
    text-align: center;
}

.nav{
    padding-top: 16px;
    padding-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}

nav a{
    text-decoration: none;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 0;
}

.hero img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
}

/* Content Sections */
.section {
    background: white;
    padding: 30px;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h2 {
    color: #2B5A4A;
    margin-bottom: 15px;
}

.pc{
    padding-left: 200px;
    padding-right: 200px;
}

h2{
    text-align: center;
}

.values {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    width: 200px;
}

.value-item img {
    width: 60px;
    margin-bottom: 10px;
}

/* Team Section */
.team {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #F4B915;
}

p{
    text-align: center;
}

 /* Footer */
 .footer {
    background: #000000;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}