.hero-wrapper {
    width: 100%;
    background: white;
}

.content {
    position: unset;
}

.hero-background {
    width: 100%;
    height: 728px;
    position: absolute;
    top: 95px;
    left: 0;
    background: linear-gradient(170deg, #E1EFFA 0%, #FDFDFE 100%);
}

.hero-buttons {
    position: absolute;
    top: 495px;
    left: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.hero-buttons .btn-blue,
.hero-buttons .btn-dark {
    padding: 10px 22px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.18px;
    color: white;
}

.hero-buttons .btn-blue {
    background: #0274D4;
}

.btn-blue a,
.btn-dark a {
    color: white;
}

.hero-buttons .btn-dark {
    background: #111827;
}

.hero-title {
    position: absolute;
    top: 259px;
    left: 82px;
    width: 607px;
    font-family: 'Kanit', sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
}

.hero-title span:first-child {
    color: #0274D4;
}

.hero-title span:last-child {
    color: black;
}

.hero-description {
    position: absolute;
    top: 391px;
    left: 90px;
    width: 561px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.hero-image {
    position: absolute;
    top: 238px;
    left: 710px;
    width: 650px;
    height: 291px;
    border-radius: 24px;
}

.hero-label {
    position: absolute;
    top: 215px;
    left: 79.5px;
    background: #0274D4;
    padding: 4px 12px;
    border-radius: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-label div {
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    text-align: center;
}

.hero-logo-circle {
    position: absolute;
    top: 13vw;
    left: 55vw;
    width: 30vw;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;

    /* Blue solid border */
    border: 3px solid #0274D4;

    /* Green dotted outer ring */
    outline: 3px dotted #4CAF50;
    outline-offset: 26px;

    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-logo-circle::before {
    content: "";
    position: absolute;
    width: calc(100% + 120px);
    height: calc(100% + 120px);
    border-radius: 50%;

    /* 3rd Ring: e.g., purple dashed border */
    border: 3px solid #0274D4;
    outline-offset: 60px;
}

.hero-background,
.hero-buttons,
.hero-title,
.hero-description,
.hero-logo-outer,
.hero-label {
    margin-top: 20px; /* Adds some spacing */
}