body {
    background-color: #B8F5AD;
}

main {
    margin-left: 8%;
    margin-right: 8%;
}

.creators{
    width: 80%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 5px;
}

.creators-container img{
    max-width: 500px;
    border-radius: 10px;
}

.title-bebas {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #074A08;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-hero {
    text-align: center;
    padding: 60px 0;
}

.subtitle {
    font-size: 1.2rem;
    color: #074A08;
    font-weight: 300;
}

.form-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    line-height: 1.8;
}

.form-container h2 {
    color: #074A08;
    border-bottom: 3px solid #6FDB67;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.creators-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.creator-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.img-wrapper {
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: scale 0.5s ease;
}

.creator-card:hover img {
    scale: 1.05;
}

.creator-info {
    padding: 25px;
    text-align: center;
}

.creator-info h3 {
    margin: 0;
    color: #074A08;
}

.hr-style {
    border: none;
    height: 3px;
    background-color: #074A08;
    width: 30%;
    margin: 60px auto;
    opacity: 0.3;
}