* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Improve touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
    a, button, input, select, textarea {
        min-height: 44px;
    }
    
    .nav-link, .btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent text size adjustment on mobile */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

:root {
    --primary-color: #22c55e;
    --secondary-color: #16a34a;
    --accent-color: #15803d;
    --text-dark: #166534;
    --text-light: #6b7280;
    --bg-light: #f0fdf4;
    --bg-white: #ffffff;
    --border-color: #d1fae5;
    --success-color: #10b981;
    --hover-color: #34d399;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 70px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--hover-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: var(--hover-color);
    transform: translateY(-2px);
}

.nav-link-login {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link-login:hover {
    background-color: var(--hover-color);
    color: var(--bg-white);
}

.nav-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.nav-profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-profile-image:hover {
    transform: scale(1.1);
}

.nav-profile-placeholder {
    width: 40px;
    height: 40px;
   
    background-color: var(--hover-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid var(--bg-white);
}

.nav-welcome {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
}

.welcome-name {
    font-weight: 600;
    margin-top: 2px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--bg-white);

    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
    padding: 40px 20px;
    min-height: calc(100vh - 70px);
    position: relative;
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(10px)) {
    .registration-card {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .page-header {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .navbar {
        background: rgba(34, 197, 94, 0.98);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

.page-header {
    margin-bottom: 30px;
    animation: fadeIn 0.8s ease-out;
    background: url('../images/login-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    height: auto;
   
   
    position: relative;
    overflow: hidden;
}



/* Description Section */
.description-section {
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    background: var(--bg-white);
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.08);
    border: 1px solid var(--border-color);
    animation: fadeIn 0.8s ease-out;
    padding: 20px 30px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(5px);
}

/* Tag List Scroller */
.taglist-scroller-container {
    margin: 40px 0;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.taglist-scroller {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    padding: 10px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    transform: translateZ(0); /* Force hardware acceleration */
    -webkit-transform: translateZ(0);
}

.taglist-scroller::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.tag-item {
    flex-shrink: 0;
    padding: 12px 20px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-icon {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.tag-text {
    font-weight: 500;
}

.tag-item:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tag-item:hover .tag-icon {
    color: var(--bg-white);
}

/* Registration Cards */
.registration-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.registration-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 40px;
    border: 1px solid rgba(209, 250, 229, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.08);
    position: relative;
    overflow: hidden;
   
}


.registration-card > * {
    position: relative;
    z-index: 1;
}

.registration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-color);
}

.registration-card:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.3s both;
}

.registration-card:nth-child(2) {
    animation: slideInRight 0.8s ease-out 0.5s both;
}

.registration-card.animate {
    animation: scaleIn 0.6s ease-out both;
}

@media (hover: none) {
    .registration-card:hover {
        transform: translateY(0) scale(1);
    }
}

.registration-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.2s ease;
    color: var(--primary-color);
}

.registration-card:hover .registration-icon {
    transform: scale(1.05);
    color: var(--hover-color);
}

.registration-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.registration-card:hover .registration-title {
    color: var(--hover-color);
}

.registration-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: left;
}

.registration-benefits {
    text-align: left;
    margin: 25px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-color);
}

.registration-benefits-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.benefits-list li.animate {
    opacity: 1;
    transform: translateX(0);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.benefits-list li:hover:before {
    transform: scale(1.3);
}

.card-highlight {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}



/* Buttons */
.btn {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

/* Better focus visibility for keyboard navigation */
.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(26, 35, 50, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(26, 35, 50, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(26, 35, 50, 0.3);
}

.btn-register {
    width: 100%;
    margin-top: 15px;
}

/* Login Section */
.login-section {
    margin-top: 60px;
    padding: 0 20px;
}

.login-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.12);
    border: 2px solid rgba(34, 197, 94, 0.2);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}


.login-card:hover {
    box-shadow: 0 12px 30px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-color);
}

.login-card > * {
    position: relative;
    z-index: 1;
}

.login-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    color: var(--primary-color);
}

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.login-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-login {
    min-width: 200px;
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
    .registration-types {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 40px 0;
    }

    .registration-card {
        padding: 35px 30px;
    }

    .registration-card:nth-child(1),
    .registration-card:nth-child(2) {
        animation: fadeIn 0.6s ease-out 0.2s both;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .registration-icon {
        animation: float 4s ease-in-out infinite;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
        background-attachment: scroll;
    }

    .navbar {
        padding: 0;
    }

    .nav-container {
        height: 60px;
        padding: 0 15px;
        position: relative;
    }

    .nav-logo img {
        max-height: 35px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile menu styles */
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        font-size: 1rem;
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

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

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

    .nav-link-login {
        width: 100%;
        padding: 15px 10px;
        font-size: 1rem;
        text-align: left;
        background-color: rgba(255, 255, 255, 0.15);
        margin-top: 10px;
        color: var(--bg-white);
    }

    .nav-link-login:hover {
        background-color: var(--hover-color);
        transform: translateX(5px);
    }

    .nav-user-profile {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 15px 10px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-profile-image,
    .nav-profile-placeholder {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .nav-welcome {
        font-size: 0.85rem;
    }

    /* Overlay for mobile menu */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }
}

    .main-content {
        padding: 30px 15px;
    }

    .page-header {
        padding: 90px 25px;
       
       
    }

    .page-header {
        min-height: 400px;
 
    }

    .page-description {
        font-size: 1rem;
        padding: 15px 20px;
        
    }

    .taglist-scroller-container {
        margin: 30px 0;
        padding: 15px 0;
    }

    .description-section {
        margin: 30px 0;
        padding: 0 15px;
    }

    .page-description {
        font-size: 1rem;
        padding: 25px 30px;
    }

    .tag-item {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .registration-types {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .registration-card {
        padding: 30px 20px;
    }

    .registration-icon {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .registration-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .registration-card:nth-child(1),
    .registration-card:nth-child(2) {
        animation: fadeIn 0.5s ease-out 0.1s both;
    }

    .registration-card:hover {
        transform: translateY(-2px);
    }

    .page-title {
        animation: fadeIn 0.6s ease-out 0.2s both;
    }

    .page-header {
        min-height: 350px;
      
    }

    .page-description {
        animation: fadeIn 0.6s ease-out 0.3s both;
    }

    .registration-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .registration-benefits {
        padding: 18px;
        margin: 20px 0;
    }

    .benefits-list li {
        padding: 7px 0;
        padding-left: 22px;
        font-size: 0.9rem;
        opacity: 1;
        transform: translateX(0);
    }

    .benefits-list li:hover {
        transform: translateX(3px);
    }

    .card-highlight {
        padding: 12px;
        margin-top: 15px;
        font-size: 0.9rem;
    }

    .registration-card:hover .card-highlight {
        transform: scale(1.01);
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
    }

    .nav-link:hover {
        transform: translateY(0);
    }

    .login-link-text:hover {
        transform: translateX(3px);
    }

    .login-section {
        margin-top: 40px;
        padding: 0 15px;
    }

    .login-card {
        padding: 30px 25px;
    }

    .login-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .login-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .login-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .btn-login {
        min-width: 180px;
        padding: 12px 25px;
        font-size: 0.95rem;
    }


/* Small Mobile Devices */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 8px;
        height: auto;
        min-height: 60px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .nav-link-login {
        padding: 2px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .main-content {
        padding: 20px 12px;
    }

    .page-header {
        padding: 50px 20px;
       
    }

    .page-header {
        min-height: 300px;
       
    }

    .page-description {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 12px 18px;
     
    }

    .taglist-scroller-container {
        margin: 25px -12px;
        padding: 10px 12px;
    }

    .description-section {
        margin: 25px 0;
        padding: 0 12px;
    }

    .page-description {
        font-size: 0.95rem;
        padding: 20px 25px;
    }

    .tag-item {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .registration-card {
        padding: 25px 18px;
    }

    .registration-icon {
        font-size: 2.5rem;
    }

    .registration-card:nth-child(1),
    .registration-card:nth-child(2) {
        animation: fadeIn 0.4s ease-out both;
    }

    .registration-title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .registration-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(34, 197, 94, 0.1);
    }

    .btn-primary:hover {
        transform: translateY(-1px);
    }

    .registration-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .registration-benefits {
        padding: 15px;
    }

    .registration-benefits-title {
        font-size: 0.95rem;
    }

    .benefits-list li {
        font-size: 0.85rem;
        padding-left: 20px;
        line-height: 1.5;
    }

    .card-highlight {
        font-size: 0.85rem;
        padding: 12px;
        line-height: 1.5;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .login-section {
        margin-top: 35px;
        padding: 0 12px;
    }

    .login-card {
        padding: 25px 20px;
    }

    .login-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .login-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .login-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }

    .btn-login {
        min-width: 160px;
        padding: 11px 20px;
        font-size: 0.9rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .nav-logo img {
        max-height: 30px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-links {
        gap: 6px;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 5px 0;
    }

    .nav-link-login {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .page-header {
        min-height: 250px;
      
    }

    .page-description {
        font-size: 0.85rem;
    }

    .registration-card {
        padding: 20px 15px;
    }

    .registration-icon {
        font-size: 2.2rem;
    }

    .registration-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .registration-description {
        font-size: 0.85rem;
    }

    .registration-benefits {
        padding: 12px;
    }

    .benefits-list li {
        font-size: 0.8rem;
        padding: 6px 0;
        padding-left: 18px;
    }

    .card-highlight {
        font-size: 0.8rem;
        padding: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .registration-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: translateY(0);
    }

    .login-link {
        font-size: 0.9rem;
        padding: 12px;
    }

    .tag-item {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .description-section {
        margin: 20px 0;
        padding: 0 10px;
    }

    .page-description {
        font-size: 0.9rem;
        padding: 18px 20px;
        line-height: 1.6;
    }

    .login-section {
        margin-top: 30px;
        padding: 0 10px;
    }

    .login-card {
        padding: 20px 15px;
    }

    .login-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .login-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .login-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .btn-login {
        min-width: 140px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Footer Styles */
.footer {
    background-image: url('../../assets/images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 60px;
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 94, 8, 0.617);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.footer-content {
    text-align: center;
}

.footer-text {
    color: white;
}

.footer-text h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.footer-text p {
    margin: 5px 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-text p:last-child {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-text p {
        font-size: 0.9rem;
    }
    
    .footer-text p:last-child {
        font-size: 0.8rem;
    }
}
