/* Slot Gacor Dower88 - Main Stylesheet */

/* ColorHunt Palette Variables */
:root {
    --color-dark-brown: #6C3428;
    --color-warm-tan: #BA704F;
    --color-creamy-peach: #DFA878;
    --color-light-blue: #CEE6F3;
    --text-dark: #000000;
    --text-light: #FFFFFF;
}

/* 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: var(--text-dark);
    background-color: var(--color-light-blue);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark-brown);
}

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: var(--text-dark);
}

/* Links */
a {
    color: var(--color-dark-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-warm-tan);
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.btn-primary {
    background: var(--color-dark-brown);
    color: var(--text-light);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--color-warm-tan);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 52, 40, 0.4);
    text-decoration: none;
    color: var(--text-light);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark-brown);
    border: 2px solid var(--color-dark-brown);
}

.btn-outline:hover {
    background: var(--color-dark-brown);
    color: var(--text-light);
    text-decoration: none;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    min-width: 160px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: var(--color-creamy-peach);
    padding: 10px 0;
    font-size: 14px;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb li {
    margin-right: 8px;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 8px;
    color: var(--color-dark-brown);
}

.breadcrumb a {
    color: var(--color-dark-brown);
}

.breadcrumb a:hover {
    color: var(--color-warm-tan);
}

/* Header */
.header {
    background: var(--color-light-blue);
    box-shadow: 0 2px 10px rgba(108, 52, 40, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--color-dark-brown);
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-warm-tan);
    text-decoration: none;
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--color-dark-brown);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.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 Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--text-light);
    box-shadow: 0 4px 20px rgba(108, 52, 40, 0.15);
    border-top: 1px solid var(--color-creamy-peach);
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.mobile-nav-list li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 20px;
    color: var(--color-dark-brown);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background: var(--color-light-blue);
    color: var(--color-warm-tan);
}

.mobile-auth-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--color-light-blue);
}

.mobile-auth-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Page Header */
.page-header {
    background: var(--color-dark-brown);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-dark-brown) 0%, var(--color-warm-tan) 100%);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: translateY(-10px) scale(1.02);
}

@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);
    }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.about-platform {
    background: linear-gradient(135deg, var(--color-creamy-peach) 0%, #f4e6d7 100%);
    position: relative;
}

.about-platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(108,52,40,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about-platform .container {
    position: relative;
    z-index: 2;
}

.about-platform h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-dark-brown);
    position: relative;
}

.about-platform h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 2px;
}

.about-platform p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--color-dark-brown);
    text-align: justify;
}

.registration-process,
.advantages-security {
    background: var(--color-creamy-peach);
}

.features,
.faq,
.cta {
    background: var(--color-light-blue);
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, #e8f4fd 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" width="30" height="26" patternUnits="userSpaceOnUse"><polygon points="15,2 25,7 25,17 15,22 5,17 5,7" fill="none" stroke="rgba(108,52,40,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--color-dark-brown);
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 2px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: var(--text-light);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 52, 40, 0.15);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(186, 112, 79, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(108, 52, 40, 0.25);
    border-color: var(--color-warm-tan);
}

.feature-card img {
    margin-bottom: 25px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-card h3 {
    color: var(--color-dark-brown);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Registration Process Section */
.registration-process {
    background: linear-gradient(135deg, var(--color-creamy-peach) 0%, #f4e6d7 100%);
    position: relative;
}

.registration-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-dark-brown);
    position: relative;
}

.registration-process h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 2px;
}

/* Process Content */
.process-content h3 {
    color: var(--color-warm-tan);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.process-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
}

/* Register Section */
.register-section {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, #e8f4fd 100%);
    position: relative;
    padding: 100px 0;
}

.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.register-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-dark-brown);
    position: relative;
}

.register-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 2px;
}

.register-content h3 {
    color: var(--color-warm-tan);
    margin: 40px 0 20px 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.steps-container {
    margin: 40px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(108, 52, 40, 0.1);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(186, 112, 79, 0.3);
}

.step-content h4 {
    color: var(--color-dark-brown);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.register-note {
    text-align: center;
    margin-top: 30px;
    color: var(--color-dark-brown);
}

.hero-image-register {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-register img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image-register img:hover {
    transform: translateY(-10px);
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, var(--color-creamy-peach) 0%, #f4e6d7 100%);
    position: relative;
    padding: 100px 0;
}

.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.login-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--color-dark-brown);
    position: relative;
}

.login-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 2px;
}

.login-content h3 {
    color: var(--color-warm-tan);
    margin: 40px 0 20px 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-dark-brown);
    font-size: 1.1rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--color-warm-tan);
    font-weight: bold;
    font-size: 1.2rem;
}

.login-note {
    text-align: center;
    margin-top: 30px;
    color: var(--color-dark-brown);
}

.hero-image-login {
    display: flex;
    justify-content: center;
}

.hero-image-login img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-image-login img:hover {
    transform: translateY(-10px);
}

/* Security Content */
.security-content h3 {
    color: var(--color-warm-tan);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, var(--color-light-blue) 0%, #e8f4fd 100%);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="question-marks" width="40" height="40" patternUnits="userSpaceOnUse"><text x="20" y="25" text-anchor="middle" font-size="20" fill="rgba(108,52,40,0.05)">?</text></pattern></defs><rect width="100" height="100" fill="url(%23question-marks)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--color-dark-brown);
    position: relative;
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-warm-tan), var(--color-dark-brown));
    border-radius: 2px;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--text-light);
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(108, 52, 40, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(108, 52, 40, 0.2);
    border-color: var(--color-warm-tan);
}

.faq-item h3 {
    background: linear-gradient(135deg, var(--color-dark-brown), var(--color-warm-tan));
    color: var(--text-light);
    padding: 25px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item h3:hover {
    background: linear-gradient(135deg, var(--color-warm-tan), var(--color-dark-brown));
}

.faq-item p {
    padding: 25px;
    margin: 0;
    background: var(--text-light);
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--color-warm-tan) 0%, var(--color-dark-brown) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.2)"/><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="15" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="15" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="35" cy="35" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta .btn:hover::before {
    left: 100%;
}

.cta .btn-primary {
    background: var(--text-light);
    color: var(--color-dark-brown);
    border: 2px solid var(--text-light);
}

.cta .btn-primary:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta .btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.cta .btn-outline:hover {
    background: var(--text-light);
    color: var(--color-dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-intro,
.about-story,
.about-values,
.about-commitment,
.about-future {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(108, 52, 40, 0.1);
}

.value-item h3 {
    color: var(--color-warm-tan);
    margin-bottom: 15px;
}

/* Privacy/Terms Content */
.privacy-content,
.terms-content,
.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 40px;
    background: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(108, 52, 40, 0.1);
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--color-warm-tan);
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.disclaimer-warning {
    background: var(--color-creamy-peach);
    border: 1px solid var(--color-warm-tan);
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.disclaimer-warning h2 {
    color: var(--color-dark-brown);
    margin-bottom: 15px;
}

.disclaimer-warning p {
    color: var(--color-dark-brown);
    font-weight: 500;
}

/* Support Content */
.support-content {
    max-width: 1000px;
    margin: 0 auto;
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-method {
    background: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(108, 52, 40, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method img {
    margin-bottom: 20px;
}

.contact-method h3 {
    color: var(--color-dark-brown);
    margin-bottom: 15px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.faq-item {
    background: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(108, 52, 40, 0.1);
}

.faq-item h3 {
    color: var(--color-warm-tan);
    margin-bottom: 15px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.topic-category {
    background: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(108, 52, 40, 0.1);
}

.topic-category h3 {
    color: var(--color-warm-tan);
    margin-bottom: 20px;
}

.topic-category ul {
    list-style: none;
    margin-left: 0;
}

.topic-category li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.topic-category li:last-child {
    border-bottom: none;
}

.hours-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.hours-item {
    background: var(--text-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(108, 52, 40, 0.1);
    text-align: center;
}

.hours-item h3 {
    color: var(--color-warm-tan);
    margin-bottom: 10px;
}

.tips-content {
    background: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(108, 52, 40, 0.1);
    margin: 30px 0;
}

.tips-content h3 {
    color: var(--color-warm-tan);
    margin-bottom: 20px;
}

.tips-content ul {
    margin-left: 20px;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* 404 Error Page */
.error-page {
    padding: 80px 0;
    text-align: center;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.error-text h1 {
    font-size: 4rem;
    color: var(--color-dark-brown);
    margin-bottom: 20px;
}

.error-text h2 {
    color: var(--color-dark-brown);
    margin-bottom: 20px;
}

.error-suggestions {
    background: var(--color-light-blue);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.error-suggestions h3 {
    color: var(--color-warm-tan);
    margin-bottom: 15px;
}

.error-suggestions ul {
    margin-left: 20px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.helpful-links {
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(108, 52, 40, 0.1);
    margin: 40px 0;
}

.helpful-links h3 {
    color: var(--color-dark-brown);
    margin-bottom: 30px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.link-item {
    text-align: center;
}

.link-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: var(--color-light-blue);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-dark-brown);
}

.link-item a:hover {
    background: var(--color-dark-brown);
    color: var(--text-light);
    transform: translateY(-3px);
}

.link-item img {
    margin-bottom: 10px;
}

.search-section {
    background: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(108, 52, 40, 0.1);
    margin: 40px 0;
}

.search-section h3 {
    color: var(--color-dark-brown);
    margin-bottom: 15px;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: 20px auto 0;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-dark-brown);
}

/* Footer */
.footer {
    background: var(--color-dark-brown);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--color-creamy-peach);
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--color-creamy-peach);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
    text-decoration: none;
}

.footer-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid var(--color-warm-tan);
    padding-top: 20px;
    text-align: center;
    color: var(--color-creamy-peach);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    /* Show mobile menu toggle, hide desktop nav */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .auth-buttons {
        display: none;
    }
    
    /* Mobile nav styles */
    .mobile-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .steps-container {
        margin: 30px 0;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        align-self: center;
    }
    
    .hero-image-register {
        justify-content: center;
    }
    
    .hero-image-register img {
        max-width: 250px;
    }
    
    .hero-image-login img {
        max-width: 300px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .error-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .error-text h1 {
        font-size: 3rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .cta-buttons,
    .error-actions,
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .faq-item p {
        padding: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
        min-width: 140px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    section {
        padding: 50px 0;
    }
    
    .register-section,
    .login-section {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta .btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    .hero-image-register img {
        max-width: 200px;
    }
    
    .hero-image-login img {
        max-width: 250px;
    }
    
    .features h2,
    .about-platform h2,
    .registration-process h2,
    .faq h2 {
        font-size: 2rem;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 2rem;
    }
}

/* Accessibility */
@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 */
.btn:focus,
a:focus,
input:focus {
    outline: 2px solid var(--color-dark-brown);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: var(--color-dark-brown);
        color: var(--text-light);
        border: 2px solid var(--text-light);
    }
    
    .btn-outline {
        background: var(--text-light);
        color: var(--color-dark-brown);
        border: 2px solid var(--color-dark-brown);
    }
}

/* Register and Login Sections */
.register-section,
.login-section {
    background: var(--color-light-blue);
    padding: 80px 0;
}

.register-section .container,
.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.register-content,
.login-content {
    max-width: 600px;
}

.register-content h2,
.login-content h2 {
    color: var(--color-dark-brown);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.register-content h3,
.login-content h3 {
    color: var(--color-warm-tan);
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
}

.register-content p,
.login-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Steps Container */
.steps-container {
    margin: 30px 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    background: var(--text-light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(108, 52, 40, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 52, 40, 0.15);
}

.step-icon {
    margin-right: 20px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-creamy-peach);
    border-radius: 50%;
}

.step-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--color-dark-brown);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content h4 strong {
    color: var(--color-warm-tan);
}

.step-content p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.benefits-list li {
    background: var(--text-light);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(108, 52, 40, 0.1);
    position: relative;
    padding-left: 50px;
    color: var(--text-dark);
    font-weight: 500;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-warm-tan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Register/Login Notes */
.register-note,
.login-note {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.register-note a,
.login-note a {
    color: var(--color-warm-tan);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-note a:hover,
.login-note a:hover {
    color: var(--color-dark-brown);
    text-decoration: underline;
}

/* Hero Images */
.hero-image-register,
.hero-image-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-image-register {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-register img,
.hero-image-login img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

.hero-image-register img:hover,
.hero-image-login img:hover {
    transform: translateY(-5px);
}

/* Responsive Design for Register/Login Sections */
@media (max-width: 768px) {
    .register-section .container,
    .login-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .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: 25px;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }
    
    .hero-image-register {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-register img,
    .hero-image-login img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .register-section,
    .login-section {
        padding: 60px 0;
    }
    
    .register-content h2,
    .login-content h2 {
        font-size: 1.8rem;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .hero-image-register img,
    .hero-image-login img {
        max-width: 200px;
    }
}