html {
    font-size: 14px;
    position: relative;
}

body {
    background: #06A0D3;
    margin: 0;
    border-radius: 32px;
}

html, body {
    background: #06A0D3;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.uwau-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Poppins", sans-serif;
    padding: 16px 16px 32px;
    box-sizing: border-box;
}

:root {
    --uwau-max: 420px; 
}

.uwau-hero-img {
    width: 100%;
    max-width: var(--uwau-max);
    display: block;
    margin: 0 auto 12px; 
    height: auto;
}

.uwau-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    width: 100%;
    max-width: var(--uwau-max);
    margin: 0 auto; 
    padding: 16px; 
    box-sizing: border-box;
}

.uwau-section {
    margin-bottom: 18px;
}

.uwau-text-img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.uwau-cta-wrap {
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-top: 6px;
}

.uwau-cta {
    color: #06A0D3; 
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; 
    position: relative;
}

.uwau-cta::before {
    content: ">";
    color: #FBB034; /* arrow color */
    margin-right: 6px;
    line-height: 1;
    transform: translateY(0.5px); /* tiny optical nudge */
}

.uwau-cta:hover::before {
    transform: translate(2px, 0.5px);
    transition: transform .15s ease;
}

.uwau-cta .uwau-arrow {
    display: none;
}

.uwau-divider {
    border: none;
    height: 1px;
    background: #ddd;
    margin: 16px 0;
}

.uwau-body-sm {
    font-size: 0.92rem;
    color: #333;
}

.uwau-inline-link {
    color: #06A0D3;
    font-weight: 600;
}

@media (min-width: 768px) {
    .uwau-page {
        padding: 24px 24px 40px;
    }

    .uwau-card {
        padding: 20px;
        border-radius: 22px;
    }
    html {
        font-size: 16px;
    }
}
