body {
    font-family: "Schoolbell", cursive;
    margin: 0;
    scroll-behavior: smooth;
    background-color: rgb(234, 234, 250);
}

.container .p-3 img {
    transition: transform 0.3s ease;
}

.container .p-3 img:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.btn-pmr {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgb(155, 156, 82);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
}

.btn-pmr:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.team-section {
    padding: 60px;
}

.team-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

.team-card {
    box-shadow: 5px 5px 0 8px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.team-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #555;
}

.member-name {
    font-size: 13px;
}

.btn-follow {
    margin-top: 8px;
    padding: 8px 24px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-follow:hover {
    background-color: #0056b3;
    color: #fff;
}

.about-desc {
    max-width: 520px;
    margin: 50px auto 0 auto;
    color: #555;
    font-size: 13px;
    line-height: 1.75;
}

.features-row {
    margin-top: 50px;
}

.feature-card {
    background-color: #1a2035;
    border-radius: 20px;
    padding: 36px 30px;
    color: white;
    text-align: left;
    height: 100%;
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 20px;
}

.feature-icon img {
    height: 75px;
}

.feature-card h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.88rem;
    color: #aab4c8;
    line-height: 1.65;
    margin: 0;
}

#footer {
    padding: 50px;
}

.footer-top {
    background-color: #1a3a33;
    padding: 60px;
    color: white;
}

.footer-brand {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
}

.footer-desc {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-sosmed a {
    color: white;
    font-size: 20px;
    margin-right: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-sosmed a:hover {
    color: #c9a84c;
}

.btn-backtop {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn-backtop:hover {
    background-color: white;
    color: #1a3a33;
}

.footer-title {
    font-weight: bold;
    color: white;
    margin-bottom: 16px;
    font-size: 15px;
}

.footer-links {
    list-style: none !important;
    padding-left: 0;
}

.footer-links li{
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    background-color: #c9a84c;
    text-align: center;
    padding: 12px;
    font-size: 13px;
    color: #1a3a33;
}

.footer-bottom p {
    margin: 0;
}