/* Yono Rummy 777 - ColorHunt Palette Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #EEDEDF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: #0D1282;
    box-shadow: 0 2px 10px rgba(13, 18, 130, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
    color: #0DE36D;
    background-color: rgba(13, 227, 109, 0.2);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-login, .btn-register {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-login {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-login:hover {
    background: #FFFFFF;
    color: #0D1282;
}

.btn-register {
    background: #0DE36D;
    color: #000000;
}

.btn-register:hover {
    background: #0BC55A;
    transform: translateY(-2px);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #EEDEDF;
    padding: 0.75rem 0;
    border-bottom: 1px solid #D71313;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-item {
    color: #000000;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #D71313;
}

.breadcrumb-item a {
    color: #0DE36D;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: #0BC55A;
}

/* Hero Section */
.hero {
    background: #0D1282;
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.hero-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background: #0DE36D;
    color: #000000;
}

.btn-primary:hover {
    background: #0BC55A;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 227, 109, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #0D1282;
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: #0D1282;
    color: #FFFFFF;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.last-updated {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Content Sections */
.about-section, .features-section, .registration-section, .security-section, .faq-section, .cta-section, .register-section, .login-section, .testimonials-section {
    padding: 5rem 0;
}

.about-section {
    background: #EEDEDF;
}

.features-section {
    background: #FFFFFF;
}

.registration-section {
    background: #EEDEDF;
}

.register-section {
    background: #EEDEDF;
}

.login-section {
    background: #FFFFFF;
}

.security-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E3F2FD 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0D1282, #0DE36D, #D71313, #0D1282);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.security-section .container {
    position: relative;
    z-index: 1;
}

.security-section h2 {
    text-align: center;
    color: #0D1282;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 4rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(13, 18, 130, 0.1);
}

.security-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #0DE36D, #0D1282);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(13, 227, 109, 0.3);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.security-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(13, 18, 130, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0DE36D, #0D1282, #D71313);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 18, 130, 0.15);
}

.security-card h3 {
    color: #0D1282;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-card h3::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #0DE36D, #0D1282);
    border-radius: 2px;
}

.security-card p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.faq-section {
    background: linear-gradient(135deg, #EEDEDF 0%, #F0F8FF 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0DE36D, #0D1282, #D71313, #0DE36D);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    color: #0D1282;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 4rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(13, 18, 130, 0.1);
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, #0DE36D, #0D1282);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(13, 227, 109, 0.3);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-section {
    background: #FFFFFF;
}

.cta-section {
    background: #0D1282;
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 18, 130, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #0DE36D;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 227, 109, 0.2);
}

.feature-card img {
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #0D1282;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Register and Login Sections */
.register-section, .login-section {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.register-content, .login-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.register-content h2, .login-content h2 {
    color: #0D1282;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.register-content h3, .login-content h3 {
    color: #0D1282;
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    font-weight: 600;
}

.register-content p, .login-content p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Steps Container */
.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(13, 18, 130, 0.1);
    border: 2px solid #0DE36D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(13, 227, 109, 0.2);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #0DE36D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.step-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.step-content h4 {
    color: #0D1282;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #000000;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.step-content strong {
    color: #0DE36D;
    font-weight: 700;
}

/* Hero Images */
.hero-image, .hero-image-login {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.hero-image {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image img, .hero-image-login img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(13, 18, 130, 0.2);
    border: 3px solid #0DE36D;
}

.hero-image-login img {
    max-width: 250px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    color: #000000;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0DE36D;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Notes */
.register-note, .login-note {
    color: #000000;
    font-size: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.register-note a, .login-note a {
    color: #0DE36D;
    text-decoration: none;
    font-weight: 600;
}

.register-note a:hover, .login-note a:hover {
    text-decoration: underline;
    color: #0BC55A;
}

/* Testimonials Section */
.testimonials-section h2 {
    color: #0D1282;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(13, 18, 130, 0.1);
    border: 2px solid #0DE36D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 227, 109, 0.2);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #0DE36D;
    font-weight: bold;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 1rem;
}

.author-info h4 {
    color: #0D1282;
    font-size: 1.2rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.author-info span {
    color: #0DE36D;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: #EEDEDF;
    border-radius: 15px;
    border: 2px solid #0DE36D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 227, 109, 0.2);
}

.stat-number {
    color: #0D1282;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Styles */
.faq-item {
    background: #FFFFFF;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(13, 18, 130, 0.1);
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0DE36D, #0D1282, #D71313);
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 18, 130, 0.15);
}

.faq-item h3 {
    background: linear-gradient(135deg, #F8F9FA, #E3F2FD);
    padding: 2.5rem;
    margin: 0;
    color: #0D1282;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E0E0E0;
}

.faq-item h3::before {
    content: '';
    width: 4px;
    height: 25px;
    background: linear-gradient(180deg, #0DE36D, #0D1282);
    border-radius: 2px;
    margin-right: 1rem;
}

.faq-item h3::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: bold;
    color: #0DE36D;
    transition: all 0.4s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(13, 227, 109, 0.1);
}

.faq-item.active h3::after {
    transform: rotate(45deg);
    background: #0DE36D;
    color: #FFFFFF;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #0DE36D, #0BC55A);
    color: #FFFFFF;
    padding-left: 3rem;
}

.faq-item h3:hover::before {
    background: #FFFFFF;
}

.faq-item h3:hover::after {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.faq-item p {
    padding: 2.5rem;
    margin: 0;
    color: #000000;
    line-height: 1.8;
    font-size: 1.1rem;
    background: #FAFBFC;
    transition: all 0.4s ease;
    text-align: justify;
}

.faq-item.active p {
    background: linear-gradient(135deg, #F0F8FF, #E8F5E8);
    border-left: 4px solid #0DE36D;
    padding-left: 3rem;
}

/* Support Page Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 18, 130, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid #0DE36D;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 227, 109, 0.2);
}

.support-card img {
    margin-bottom: 1rem;
}

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

.contact-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 18, 130, 0.1);
    border: 1px solid #0DE36D;
}

.contact-item h3 {
    color: #0D1282;
    margin-bottom: 1rem;
}

.response-times {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.time-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(13, 18, 130, 0.1);
    text-align: center;
    border: 1px solid #0DE36D;
}

.time-item h4 {
    color: #0D1282;
    margin-bottom: 0.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.tip-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(13, 18, 130, 0.1);
    border: 1px solid #0DE36D;
}

.tip-item h4 {
    color: #0D1282;
    margin-bottom: 0.5rem;
}

/* 404 Error Page Styles */
.error-page {
    padding: 4rem 0;
    text-align: center;
    background: #EEDEDF;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content h1 {
    font-size: 4rem;
    color: #0D1282;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.5rem;
    color: #D71313;
    margin-bottom: 1rem;
}

.error-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.helpful-links {
    margin: 3rem 0;
}

.helpful-links h3 {
    color: #0D1282;
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.link-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(13, 18, 130, 0.1);
    text-decoration: none;
    color: #000000;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid #0DE36D;
}

.link-card:hover {
    transform: translateY(-3px);
    color: #0D1282;
    box-shadow: 0 5px 15px rgba(13, 227, 109, 0.2);
}

.search-suggestion {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 18, 130, 0.1);
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #0DE36D;
}

.search-suggestion h3 {
    color: #0D1282;
    margin-bottom: 1rem;
}

.search-suggestion ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.search-suggestion li a {
    color: #0DE36D;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #EEDEDF;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #0DE36D;
}

.search-suggestion li a:hover {
    background: #0DE36D;
    color: #000000;
}

.contact-info {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(13, 18, 130, 0.1);
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #0DE36D;
}

.contact-info h3 {
    color: #0D1282;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    border: 2px solid #0D1282;
    color: #0D1282;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #0D1282;
    color: #FFFFFF;
}

/* Footer Styles */
.footer {
    background: #0D1282;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #0DE36D;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0DE36D;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #0DE36D;
    padding-top: 1rem;
    text-align: center;
    color: #EEDEDF;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    color: #0D1282;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-wrapper h3 {
    color: #0D1282;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-wrapper h4 {
    color: #0D1282;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.content-wrapper p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-wrapper ul, .content-wrapper ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.5rem;
}

.content-wrapper a {
    color: #0DE36D;
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
    color: #0BC55A;
}

/* Contact Info Styles */
.contact-info {
    background: #EEDEDF;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 2px solid #0DE36D;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Warning Box */
.warning-box {
    background: #EEDEDF;
    border: 2px solid #D71313;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #D71313;
    margin-bottom: 1rem;
}

.warning-box p {
    color: #000000;
    margin-bottom: 0;
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:last-child {
    transform: rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 18, 130, 0.9);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Tablet and Mobile Menu Styles */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation on tablet and mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0D1282;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background-color: rgba(13, 227, 109, 0.2);
        color: #0DE36D;
        transform: translateX(10px);
    }
    
    .nav-buttons {
        position: fixed;
        bottom: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        background: #0D1282;
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
        transition: right 0.3s ease;
        z-index: 1000;
        border-top: 2px solid #0DE36D;
    }
    
    .nav-buttons.active {
        display: flex;
        right: 0;
    }
    
    .nav-buttons .btn-login,
    .nav-buttons .btn-register {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        position: relative;
    }
    
    .nav-logo {
        order: 1;
    }
    
    .mobile-menu-toggle {
        order: 2;
    }
    
    .nav-menu {
        width: 90%;
        max-width: 350px;
    }
    
    .nav-buttons {
        width: 90%;
        max-width: 350px;
    }
    
    .nav-menu a {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .nav-buttons .btn-login,
    .nav-buttons .btn-register {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-container h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons, .cta-buttons, .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid, .support-options, .contact-details {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-suggestion ul {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile menu is already handled in 1024px media query */
    
    /* Register and Login Sections Mobile */
    .register-section, .login-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 2rem 0;
    }
    
    .register-content, .login-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .register-content h2, .login-content h2 {
        font-size: 2rem;
    }
    
    .register-content h3, .login-content h3 {
        font-size: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .hero-image, .hero-image-login {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .hero-image {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-image img, .hero-image-login img {
        max-width: 200px;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Security Section Mobile */
    .security-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .security-card {
        padding: 2rem;
    }
    
    .security-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .security-card p {
        font-size: 1rem;
    }
    
    /* FAQ Section Mobile */
    .faq-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .faq-item h3 {
        padding: 2rem;
        font-size: 1.2rem;
    }
    
    .faq-item p {
        padding: 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .error-content h1 {
        font-size: 3rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    /* Security Section Small Mobile */
    .security-section h2 {
        font-size: 1.8rem;
    }
    
    .security-card {
        padding: 1.5rem;
    }
    
    .security-card h3 {
        font-size: 1.2rem;
    }
    
    .security-card p {
        font-size: 0.95rem;
    }
    
    /* FAQ Section Small Mobile */
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-item p {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Mobile menu adjustments for small screens */
    .nav-menu {
        width: 95%;
        max-width: 320px;
    }
    
    .nav-buttons {
        width: 95%;
        max-width: 320px;
    }
    
    .nav-menu a {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    
    .nav-buttons .btn-login,
    .nav-buttons .btn-register {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus, button:focus {
    outline: 2px solid #0DE36D;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #0DE36D;
        color: #000000;
        border: 2px solid #0DE36D;
    }
    
    .btn-secondary {
        background: #FFFFFF;
        color: #0D1282;
        border: 2px solid #0D1282;
    }
}
