* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
    color: #222;
}

.hero {
    width: 100%;
    height: 300px;
    background: url('../images/hero.jpg') center/cover no-repeat;
}

.profile {
    text-align: center;
    margin-top: -80px;
}

.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 6px solid #00a8d6;
    background: #fff;
}

.profile h1 {
    margin-top: 15px;
    font-size: 28px;
}

.menu-box {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 10px;
}

.box {
    flex: 1;
    background: #11a5d8;
    color: #fff;
    padding: 25px 10px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

.content {
    padding: 20px;
    padding-bottom: 100px;
    font-size: 16px;
    line-height: 1.7;
}

.whatsapp-btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 20px auto;
    background: #25d366;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

.floating-wa {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1ebc4f;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.wa-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    width: fit-content;
    margin: 20px auto;
    box-shadow: 0 4px 0 #1DA851;
    transition: 0.2s;
}

.wa-modern:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #1DA851;
}

.wa-icon {
    background: #fff;
    color: #25D366;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.wa-text strong {
    font-size: 16px;
    display: block;
}

.wa-text small {
    font-size: 12px;
}

.wa-img-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 340px;
    margin: 25px auto;
}

.wa-img-btn img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0; /* ensure no extra offset */
    transition: 0.2s;
}