/* Custom Fonts with fallback metrics */
@font-face {
    font-family: "XLSMARTSans-Regular";
    src: url("fonts/XLSMARTSans-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    size-adjust: 100%;
}

@font-face {
    font-family: "XLSMARTSans-SemiBold";
    src: url("fonts/XLSMARTSans-SemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    size-adjust: 100%;
}

@font-face {
    font-family: "XLSMARTSans-Bold";
    src: url("fonts/XLSMARTSans-Bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    size-adjust: 100%;
}

/* Prevent layout shift during font loading */
.hero-text-intro h1 {
    font-synthesis: none;
    text-rendering: optimizeSpeed;
}

/* Image aspect ratio containers to prevent CLS */
.hands-illustration,
.device-illustration,
.person-illustration,
.target-illustration {
    aspect-ratio: 1;
    contain: layout style paint;
}

.device-illustration {
    aspect-ratio: 4/3;
}

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header Styles */
.header {
    background: linear-gradient(90deg, #1e22a7 0%, #e2005a 100%);
    /* backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    position: sticky;
    top: 10px;
    margin: 10px;
    width: auto;
    z-index: 1000;
    box-shadow:
        0 8px 32px rgba(139, 53, 255, 0.25),
        0 4px 16px rgba(255, 128, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.logo {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.footer-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 14px;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 18px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-link.active {
    opacity: 1;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

/* Hamburger to X animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text-intro h1 {
    font-family:
        "XLSMARTSans-Bold",
        Segoe UI,
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e22a7;
    margin-bottom: 1rem;
}

.hero-text-intro p {
    font-family:
        "XLSMARTSans-Regular",
        Segoe UI,
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    font-size: 1.1rem;
    color: #1e22a7;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.button-top {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.anggota {
    height: 327px;
    background-image: url(images/icon-sepeda.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    color: #1e22a7;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    border-radius: 30px;
    flex-direction: column;
}
.anggota span {
    font-family: "XLSMARTSans-Bold";
    font-size: 4em;
    font-weight: bold;
}
.anggota span:after {
    font-family: "XLSMARTSans-Bold";
    font-size: 1em;
    font-weight: bold;
    content: "++";
    margin-left: 5px;
}
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 14px;
    width: -webkit-fill-available;
    background: #1e22a7;
    color: white;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
.btn:hover {
    background: white;
    color: #1e22a7;
    border: 2px solid #8b35ff;
    transform: translateY(-2px);    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn-daftar span{
    width: 20px;
    height: 16px;
    background: url(images/ico-daftar.webp) no-repeat center;
    background-size: contain;
    display: inline-block;
    margin-right: 8px;
}

.btn-pelajari span{
    width: 32px;
    height: 16px;
    background: url(images/ico-pelajari.webp) no-repeat center;
    background-size: contain;
    display: inline-block;
    margin-right: 8px;
}

.btn:hover.btn-daftar span{
    background-size: contain !important;
    background: url(images/ico-daftar-hover.webp) no-repeat center;
}  
.btn:hover.btn-pelajari span{
    background-size: contain !important;
    background: url(images/ico-pelajari-hover.webp) no-repeat center;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hands-illustration {
    width: 500px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hands-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: drop-shadow(0 10px 20px rgba(139, 53, 255, 0.2)); */
    transition: transform 0.3s ease;
    bottom: -50px;
    position: relative;
}

.hands-illustration:hover img {
    transform: scale(1.02);
}

/* Rights Section */
.rights-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.rights-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e22a7;
}

.rights-header h2 {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.rights-header p {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.rights-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.rights-card {
    background: #676aff3b;
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rights-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(30deg, #4a00e0 0%, #d9006c 100%);
    padding: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 95px;
    justify-content: center;
    text-align: center;
}

/* .card-header::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #574b7a;
} */

.card-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon span {
    width: 28px;
    height: 28px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-berserikat {
    background-image: url('images/ico-berserikat.webp');
}

.icon-upah {
    background-image: url('images/ico-upah.webp');
}

.icon-phk {
    background-image: url('images/ico-phk.webp');
}

.card-header h3 {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.card-body {
    padding: 2rem 1.5rem 1rem;
    flex-grow: 1;
}

.law-reference {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.law-title {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #1e22a7;
    display: block;
}

.rights-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rights-bullets li {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: #4a4a4a;
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.rights-bullets li::before {
    content: "•";
    color: #7c6baa;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.card-illustration {
    padding: 0 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 120px;
}

.card-illustration img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    position: relative;
    bottom:-14px;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.benefits-section h2 {
    font-family:
        "XLSMARTSans-Bold",
        Segoe UI,
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e22a7;
    text-align: center;
    margin-bottom: 1rem;
}

.benefits-section > .container > p {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: #676aff3b;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shield,
.icon-handshake,
.icon-document,
.icon-people {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.cta-section .btn {
    width: fit-content;
}


/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}
.vision-section .container .bg-mountain {
    position: fixed;
    background: url('images/bg-mountain.webp') no-repeat center / cover;
    height: 703px;
    width: 408px;
    display: block;
    top: 60px;
    left: -110px;
}
.vision-section .container .bg-boat {
    position: relative;
    background: url('images/bg-boat.webp') no-repeat center / cover;
    height: 375px;
    width: 1363px;
    display: block;
    bottom: -80px;
    right: -80px;
}



.vision-content {
    display: grid;
    grid-template-columns: 21vw 1fr 1fr; /* gutter, then your two columns */
    gap: 1rem;
    align-items: start;
}
.vision-content::before {
  content: "";
  grid-column: 1;         /* put the pseudo item in the gutter */
  grid-row: 1 / -1;       /* span all rows */
}
.person-illustration {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(139, 53, 255, 0.15));
    transition: transform 0.3s ease;
}

.person-illustration:hover img {
    transform: scale(1.02);
}

.vision-text h2 {
    font-family:
        "XLSMARTSans-Bold",
        Segoe UI,
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e22a7;
    margin-bottom: 2rem;
    border-bottom: solid 2px #1e22a7;
    padding-bottom: 5px;
    width: 30%;
}

.vision-text ul {
    list-style: none;
    padding: 0;
}

.vision-text li {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.8;
    font-size: 1.2rem;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.target-illustration {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(233, 30, 99, 0.15));
    transition: transform 0.3s ease;
}

.target-illustration:hover img {
    transform: scale(1.02);
}

.mission-text h2 {
    font-family:
        "XLSMARTSans-Bold",
        Segoe UI,
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e22a7;
    margin-bottom: 2rem;
}

.mission-text ul {
    list-style: none;
    padding: 0;
}

.mission-text li {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.8;
}

.vision-text li::before, .mission-text li::before {
    content: "";
    color: #8b35ff;
    top: 5px;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 1rem;
    height: 1rem;
    background: url('images/ico-arrow.webp') no-repeat center / contain;
}


/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 100%;
    height: 60px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Berita & Agenda Section */
.berita-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.berita-header {
    text-align: center;
    margin-bottom: 3rem;
}

.berita-header h2 {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e22a7;
    margin-bottom: 1rem;
}

.berita-header p {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.berita-card {
    background: linear-gradient(180deg, #f0eeff 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.berita-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.berita-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.berita-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.berita-card:hover .berita-image img {
    transform: scale(1.05);
}

.berita-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #1e22a7 0%, #4a00e0 100%);
    padding: 6px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.berita-badge img {
    width: 30px;
    height: auto;
    filter: brightness(10);
}

.berita-content {
    padding: 1.25rem;
}

.berita-date {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-bottom: 0.5rem;
}

.berita-title {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: #1e22a7;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.berita-excerpt {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.berita-link {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    color: #d9006c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.berita-link:hover {
    color: #4a00e0;
}

/* Responsive Berita Section */
@media (max-width: 1024px) {
    .berita-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .berita-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .berita-header h2 {
        font-size: 2rem;
    }
    
    .berita-section {
        padding: 60px 0;
    }
}

/* Help Section */
.help-section {
    padding: 20px 0 80px;
    background: white;
}

.help-banner {
    background: linear-gradient(30deg, #4a00e0 0%, #d9006c 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-banner h2 {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin: 0;
    z-index: 2;
    position: relative;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.help-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.help-icon img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.help-banner-left {
    position: absolute;
    left: 10px;
    top: 15px;
    width: 20%;
}

.help-banner-right {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 20%;
}

.help-item:hover .help-icon {
    transform: scale(1.1);
}

.help-text a{
    text-decoration: none;
    color: #1e22a7;
}

.help-text h3 {
    font-family: "XLSMARTSans-Bold", Segoe UI, Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e22a7;
    margin-bottom: 0.25rem;
}

.help-text p {
    font-family: "XLSMARTSans-Regular", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    color: #1e22a7;
    line-height: 1.4;
    margin: 0;
}

.phone-number {
    font-size: 1.1rem !important;
    font-weight: 600;
}

.ig-handle {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: -600%;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(139, 53, 255, 0.95) 0%, rgba(233, 30, 99, 0.95) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 8px 32px rgba(139, 53, 255, 0.3);
        border-radius: 30px;
        gap: 0;
    }

    .nav-menu.active {
        top: 80px;
    }

    /* Mobile nav-link styles - no underline effects */
    .nav-menu .nav-link {
        display: block;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(0);
    }

    .nav-menu .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        font-weight: 600;
    }
    .nav-menu li {
        width: 80%;
        margin: 0 auto;
        line-height: 0.3;
    }
    .hero-content,
    .rights-cards,
    .help-grid,
    .vision-content,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .device-illustration {
        width: 95%;
    }
    .vision-content{
        justify-items: end;
    }
    .vision-section .container .bg-mountain,
    .vision-section .container .bg-boat {
        display: none;
    }

    .help-banner {
        padding: 2rem 1rem;
        min-height: 150px;
    }

    .help-grid {
        gap: 2rem;
    }
    
    .help-item {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .rights-text h2,
    .vision-text h2,
    .mission-text h2,
    .benefits-section h2,
    .help-banner h2 {
        font-size: 2rem;
    }

    .hands-illustration,
    .person-illustration,
    .target-illustration {
        width: 250px;
        height: 250px;
    }
    .hands-illustration img{
        bottom:0;
    }
    .help-banner-left, .help-banner-right {
        display: none;
    }
}
