/* YN 777 Gaming Platform - Main Stylesheet */
/* ColorHunt Palette: #DEE8CE, #BB6653, #F08B51, #FFF8E8 */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #000000; /* Black text on light backgrounds */
    background-color: #FFF8E8; /* Very light cream background */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000; /* Black text on light backgrounds */
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    color: #000000; /* Black text on light backgrounds */
}

a {
    color: #BB6653; /* Warm muted red for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #F08B51; /* Warm orange on hover */
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: #BB6653; /* Warm muted red background */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #BB6653;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    color: #FFFFFF;
    font-weight: 500;
    padding: 1rem 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 0;
}

.mobile-nav-menu a:hover {
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

.btn-login-mobile, .btn-register-mobile {
    background-color: #F08B51 !important;
    color: #FFFFFF !important;
    padding: 1rem 2rem !important;
    border-radius: 0 !important;
    font-weight: 600;
    text-align: center;
    margin: 0.5rem 2rem;
    border-radius: 25px !important;
}

.btn-register-mobile {
    background-color: #BB6653 !important;
}

.btn-login-mobile:hover, .btn-register-mobile:hover {
    background-color: #F08B51 !important;
    transform: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-register-mobile:hover {
    background-color: #A55A4A !important;
}

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

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

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

.nav-menu a {
    color: #FFFFFF; /* White text on warm background */
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255,255,255,0.2);
    text-decoration: none;
}

.btn-login, .btn-register {
    background-color: #F08B51; /* Warm orange for buttons */
    color: #FFFFFF !important; /* White text on warm background */
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-register {
    background-color: #BB6653; /* Warm muted red for register button */
}

.btn-login:hover, .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #DEE8CE; /* Light mint-green cream */
    padding: 1rem 0;
    border-bottom: 1px solid #BB6653; /* Warm muted red border */
}

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

.breadcrumb-item {
    color: #000000; /* Black text on light background */
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: #BB6653; /* Warm muted red for separators */
}

.breadcrumb-item a {
    color: #BB6653; /* Warm muted red for links */
}

.breadcrumb-item[aria-current="page"] {
    color: #000000; /* Black text for current page */
    font-weight: 500;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
}

/* Hero Section */
.hero-section {
    background: #BB6653; /* Warm muted red background */
    color: #FFFFFF; /* White text on warm background */
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-container {
    flex: 1;
    padding: 0 2rem;
}

.hero-container h1 {
    color: #FFFFFF; /* White text on warm background */
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: #F08B51; /* Warm orange */
    color: #FFFFFF; /* White text on warm background */
}

.btn-secondary {
    background: #BB6653; /* Warm muted red */
    color: #FFFFFF; /* White text on warm background */
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* Hover states for buttons using palette colors */
.btn-primary:hover {
    background: #BB6653; /* Switch to warm muted red on hover */
}

.btn-secondary:hover {
    background: #F08B51; /* Switch to warm orange on hover */
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: #DEE8CE; /* Light mint-green cream */
    border-radius: 10px;
}

.page-header h1 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

.page-intro {
    font-size: 1.1rem;
    color: #000000; /* Black text on light background */
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #FFF8E8; /* Very light cream background */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

section h2 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #F08B51; /* Warm orange border */
}

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

.feature-card {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #BB6653; /* Warm muted red border */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

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

.process-step {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #F08B51; /* Warm orange border */
}

.process-step h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

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

.security-item {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid #BB6653; /* Warm muted red border */
}

.security-item h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

/* Register and Login Sections */
.register-section, .login-section {
    background: #FFF8E8; /* Very light cream background */
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #DEE8CE; /* Light mint-green cream border */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.register-content, .login-content {
    padding-right: 2rem;
}

.register-content h2, .login-content h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.register-content h3::after, .login-content h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F08B51, #BB6653);
    margin-top: 0.5rem;
    border-radius: 2px;
}

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

.steps-container {
    margin: 2rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #DEE8CE; /* Light mint-green cream */
    border-radius: 12px;
    border-left: 4px solid #F08B51; /* Warm orange border */
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.step-content h4 {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-content h4 strong {
    color: #F08B51; /* Warm orange for bold keywords */
    font-weight: 700;
}

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

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

.benefits-list li {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.btn-primary {
    background: #F08B51; /* Warm orange */
    color: #FFFFFF;
}

.btn-secondary {
    background: #BB6653; /* Warm muted red */
    color: #FFFFFF;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    text-decoration: none;
}

.register-note, .login-note {
    color: #666666;
    font-size: 1rem;
    margin-top: 1rem;
}

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

.register-note a:hover, .login-note a:hover {
    text-decoration: underline;
}

.hero-image-register, .hero-image-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-image-register img, .hero-image-login img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.hero-image-register img:hover, .hero-image-login img:hover {
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials-section {
    background: #FFF8E8; /* Very light cream background */
    margin-bottom: 3rem;
    padding: 4rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #DEE8CE; /* Light mint-green cream border */
}

.testimonials-section h2 {
    text-align: center;
    color: #000000; /* Black text on light background */
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F08B51, #BB6653);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: #FFFFFF; /* Pure white background */
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F08B51, #BB6653);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #F08B51;
}

.testimonial-content {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333333;
    position: relative;
    margin: 0;
    padding: 0 1rem;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: #F08B51;
    position: absolute;
    top: -15px;
    left: -5px;
    font-family: Georgia, serif;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content p::after {
    content: '"';
    font-size: 4rem;
    color: #F08B51;
    position: absolute;
    bottom: -25px;
    right: -5px;
    font-family: Georgia, serif;
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    text-align: right;
    border-top: 1px solid #E8E8E8;
    padding-top: 1.5rem;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 1px;
    background: #F08B51;
}

.testimonial-author h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.testimonial-author span {
    color: #BB6653;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #DEE8CE;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: #FFFFFF;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
    position: relative;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F08B51, #BB6653);
    border-radius: 2px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: #F08B51;
}

.stat-item h3 {
    color: #F08B51;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    line-height: 1;
}

.stat-item p {
    color: #666666;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-container {
    margin-top: 2rem;
}

.faq-item {
    background: #DEE8CE; /* Light mint-green cream */
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #F08B51; /* Warm orange border */
}

.faq-item h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    background: #F08B51; /* Warm orange background */
    color: #FFFFFF; /* White text on warm background */
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.cta-section h2 {
    color: #FFFFFF; /* White text on warm background */
    margin-bottom: 1rem;
}

.cta-section p {
    color: #FFFFFF; /* White text on warm background */
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.contact-method {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #BB6653; /* Warm muted red border */
}

.contact-method h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

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

.value-item {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #F08B51; /* Warm orange border */
}

.value-item h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

/* Tech Support */
.tech-support-content {
    margin-top: 2rem;
}

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

.tech-issue {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #F08B51; /* Warm orange border */
}

.tech-issue h4 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

.tech-issue ul {
    list-style: none;
    padding-left: 0;
}

.tech-issue li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.tech-issue li:before {
    content: "✓";
    color: #BB6653; /* Warm muted red for checkmarks */
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsible Gaming Tools */
.responsible-gaming-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-item {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #BB6653; /* Warm muted red border */
}

.tool-item h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

/* Availability Info */
.availability-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.availability-item {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #BB6653; /* Warm muted red border */
}

.availability-item h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

/* Contact Details */
.contact-details {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #F08B51; /* Warm orange border */
}

.contact-details h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #BB6653; /* Warm muted red background */
    color: #FFFFFF; /* White text on warm background */
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section h3, .footer-section h4 {
    color: #FFFFFF; /* White text on warm background */
    margin-bottom: 1rem;
}

.footer-section p {
    color: #FFFFFF; /* White text on warm background */
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

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

.footer-section ul li a {
    color: #FFFFFF; /* White text on warm background */
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: #FFFFFF; /* White text on warm background */
    text-decoration: none;
    opacity: 1;
}

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

.footer-bottom {
    border-top: 1px solid #F08B51; /* Warm orange border */
    padding-top: 2rem;
    text-align: center;
    color: #FFFFFF; /* White text on warm background */
    opacity: 0.9;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 4rem 2rem;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 4rem;
    color: #F08B51; /* Warm orange for error heading */
    margin-bottom: 1rem;
}

.error-content h2 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

.error-image {
    margin: 2rem 0;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.helpful-links {
    background: #DEE8CE; /* Light mint-green cream */
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.helpful-links h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
    text-align: center;
}

.link-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.link-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.link-list li:before {
    content: "→";
    color: #BB6653; /* Warm muted red for arrows */
    font-weight: bold;
    margin-right: 0.5rem;
}

.search-suggestion {
    background: #FFF8E8; /* Very light cream background */
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #F08B51; /* Warm orange border */
}

.search-suggestion h3 {
    color: #000000; /* Black text on light background */
    margin-bottom: 1rem;
}

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

.category-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #bdc3c7;
}

.category-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu {
        display: none;
    }
    
    .mobile-menu.active {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
        padding: 0 20px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-container h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .register-content, .login-content {
        padding-right: 0;
    }
    
    .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: 1.5rem;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .hero-image-register, .hero-image-login {
        order: -1;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-section {
        padding: 3rem 1.5rem;
    }
    
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        font-size: 3rem;
    }
    
    .process-container {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .link-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem 10px;
    }
    
    section {
        padding: 1rem;
    }
    
    .hero-container h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .register-section, .login-section {
        padding: 2rem 1rem;
    }
    
    .register-content h2, .login-content h2 {
        font-size: 1.8rem;
    }
    
    .register-content h3, .login-content h3 {
        font-size: 1.3rem;
    }
    
    .step-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon img {
        width: 30px;
        height: 30px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image-register img, .hero-image-login img {
        width: 250px;
        height: auto;
    }
    
    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-section {
        padding: 2rem 1rem;
    }
    
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        padding: 0;
    }
    
    .testimonial-content p::before,
    .testimonial-content p::after {
        font-size: 2.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Focus states using palette colors */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid #F08B51; /* Warm orange focus outline */
    outline-offset: 2px;
}

/* Interactive states for cards and elements */
.feature-card:hover, .contact-method:hover, .value-item:hover, .tool-item:hover {
    border-color: #F08B51; /* Warm orange border on hover */
    box-shadow: 0 5px 20px rgba(240, 139, 81, 0.2);
}

/* Form elements using palette colors */
input, textarea, select {
    border: 2px solid #DEE8CE; /* Light mint-green cream border */
    border-radius: 5px;
    padding: 0.5rem;
    background: #FFF8E8; /* Very light cream background */
    color: #000000; /* Black text */
}

input:focus, textarea:focus, select:focus {
    border-color: #F08B51; /* Warm orange border on focus */
    background: #FFF8E8; /* Very light cream background */
}

/* Success and error messages using palette */
.success-message {
    background: #DEE8CE; /* Light mint-green cream */
    color: #000000; /* Black text */
    border: 1px solid #BB6653; /* Warm muted red border */
}

.form-error {
    background: #FFF8E8; /* Very light cream background */
    color: #BB6653; /* Warm muted red text */
    border: 1px solid #F08B51; /* Warm orange border */
}

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

/* Print Styles */
@media print {
    .navbar, .footer, .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .main-content {
        max-width: none;
        padding: 0;
    }
}
