﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background: #f4f4f4; /* Light gray background */
    font-size: 3rem; /* Make text big */
    font-weight: bold;
    color: #27a74a; /* Green accent */
    text-align: center;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
.logo img{
    height:150px;
}
/* Header Styles */
.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

    .nav-menu a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-menu a:hover {
            color: rgb(39, 167, 74);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
            transition: width 0.3s ease;
        }

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

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-login {
    background: transparent;
    color: #333;
    border: 2px solid transparent;
}

    .btn-login:hover {
        color: rgb(39, 167, 74);
    }

.btn-signup {
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 167, 74, 0.3);
}

    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(39, 167, 74, 0.4);
    }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(39, 167, 74, 0.9) 0%, rgba(31, 134, 59, 0.9) 100%), url('hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(39, 167, 74, 0.1) 0%, rgba(31, 134, 59, 0.1) 100%);
        animation: shimmer 3s ease-in-out infinite alternate;
    }

@keyframes shimmer {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-primary {
    background: white;
    color: rgb(39, 167, 74);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: white;
        color: rgb(39, 167, 74);
        transform: translateY(-3px);
    }

/* Section Styles */
.section {
    padding: 5rem 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* How It Works */
.how-it-works {
    background: #f8faff;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .step::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
        transition: left 0.3s ease;
    }

    .step:hover::before {
        left: 0;
    }

    .step:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    font-size: 1.1rem;
}

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

.sport-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .sport-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sport-card:hover::before {
        opacity: 0.1;
    }

    .sport-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .sport-card * {
        position: relative;
        z-index: 2;
    }

.sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.sport-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

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

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

    .event-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.event-image {
    height: 200px;
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.event-details {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgb(39, 167, 74);
    margin-bottom: 1rem;
}

.btn-join {
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

    .btn-join:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39, 167, 74, 0.4);
    }

/* Why Hobio */
.why-hobio {
    background: #f8faff;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-8px);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 600px;
    position: relative;
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 4rem;
        color: rgb(39, 167, 74);
        font-family: serif;
    }

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

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

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

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

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

        .footer-links a:hover {
            color: rgb(39, 167, 74);
        }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: rgb(39, 167, 74);
        color: white;
        transform: translateY(-3px);
    }

/* Contact Form Styles */
.contact-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #444;
    border-radius: 8px;
    background: #2a2a2a;
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: rgb(39, 167, 74);
        box-shadow: 0 0 10px rgba(39, 167, 74, 0.3);
        background: #333;
        color: white;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #888;
    }

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-send {
    background: linear-gradient(135deg, rgb(39, 167, 74) 0%, rgb(31, 134, 59) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
}

    .btn-send:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(39, 167, 74, 0.4);
    }

    .btn-send:active {
        transform: translateY(0);
    }

/* Success message */
.form-success {
    background: rgba(39, 167, 74, 0.1);
    border: 1px solid rgb(39, 167, 74);
    color: rgb(39, 167, 74);
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    display: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
}

.mobile-menu-items {
    padding: 2rem 0;
}

    .mobile-menu-items a {
        display: block;
        padding: 1rem 1.5rem;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
    }

        .mobile-menu-items a:hover {
            background: #f8faff;
            color: rgb(39, 167, 74);
            padding-right: 2rem;
        }

.mobile-menu-buttons {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

    .mobile-menu-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-top: 35%;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .mobile-menu {
        width: 100%;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

    .header h1 {
        font-size: 2.5em;
        font-weight: 600;
        margin-bottom: 10px;
    }

.effective-date {
    font-size: 1.1em;
    opacity: 0.9;
}

.content {
    padding: 40px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
}

.subsection {
    margin-bottom: 25px;
}

.subsection-number {
    font-weight: bold;
    color: #495057;
    margin-bottom: 10px;
    font-size: 1.1em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

.highlight {
    background-color: #fff3cd;
    padding: 20px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.caps-text {
    font-weight: bold;
    text-transform: uppercase;
}

.conduct-list {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

    .conduct-list h3 {
        color: #495057;
        margin-bottom: 15px;
        font-size: 1.2em;
    }

    .conduct-list ul {
        list-style-type: none;
        padding: 0;
    }

    .conduct-list li {
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
    }

        .conduct-list li:before {
            content: "•";
            font-weight: bold;
            position: absolute;
            left: 0;
        }

.penalties {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

    .penalties h4 {
        color: #c53030;
        margin-bottom: 10px;
    }

    .penalties ul {
        list-style-type: none;
        padding-left: 0;
    }

    .penalties li {
        padding: 5px 0;
        padding-left: 20px;
        position: relative;
    }

        .penalties li:before {
            content: "⚠";
            position: absolute;
            left: 0;
            color: #c53030;
        }

.sms-notice {
    background-color: #e7f3ff;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.acknowledgment {
    background-color: #d1ecf1;
    border: 1px solid #b8daff;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    font-weight: 600;
    color: #004085;
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}


    .header {
        padding: 25px 20px;
    }

        .header h1 {
            font-size: 2em;
        }

    .content {
        padding: 25px 20px;
    }

    .section-title {
        font-size: 1.5em;
    }
}


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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 20px;
}

.navigation {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid #dee2e6;
}

.nav-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

    .nav-link:hover {
        background: #6c757d;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

.content {
    padding: 0;
}

.document-section {
    margin-bottom: 60px;
}

.document-title {
    font-size: 2.5em;
    color: #495057;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #6c757d;
    font-weight: 700;
}

.effective-date {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.6em;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 600;
    padding-left: 15px;
    border-left: 4px solid #6c757d;
}

.subsection {
    margin-bottom: 25px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #e9ecef;
}

.subsection-title {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.numbered-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6c757d;
}

    .numbered-section h4 {
        color: #495057;
        font-weight: 600;
        margin-bottom: 10px;
        font-size: 1.2em;
    }

p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.definition-list {
    background: #f1f3f4;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.definition-item {
    margin-bottom: 15px;
}

.definition-term {
    font-weight: 600;
    color: #495057;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

.warning-box {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

.info-box {
    background: linear-gradient(135deg, #e2e3e5, #d6d8db);
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.2);
}

.contact-info {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

    .contact-info h3 {
        margin-bottom: 15px;
        font-size: 1.5em;
    }

    .contact-info p {
        margin-bottom: 8px;
        font-size: 1.1em;
    }

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .navigation {
        padding: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-link {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .document-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.4em;
    }
}

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

/* Hover effects */
.subsection:hover, .numbered-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.page-title {
    font-size: 2.5em;
    color: #495057;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid #6c757d;
    font-weight: 700;
}

.intro {
    font-size: 1.1em;
    color: #495057;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #6c757d;
}

.section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 1.6em;
    color: #495057;
    margin-bottom: 20px;
    font-weight: 600;
    padding-left: 15px;
    border-left: 4px solid #6c757d;
}

.steps-container {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 25px 0;
}

.step-data-delete {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .step-data-delete:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
}

.step-description {
    color: #6c757d;
    line-height: 1.7;
}

.important-info {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.2);
}

    .important-info h3 {
        color: #856404;
        margin-bottom: 15px;
        font-size: 1.3em;
        display: flex;
        align-items: center;
    }

        .important-info h3::before {
            content: "⚠️";
            margin-right: 10px;
            font-size: 1.2em;
        }

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

    .info-list li {
        margin-bottom: 15px;
        padding-left: 30px;
        position: relative;
        line-height: 1.8;
        color: #856404;
    }

        .info-list li::before {
            content: "•";
            position: absolute;
            left: 10px;
            color: #856404;
            font-size: 1.5em;
            line-height: 1.2;
        }

.warning-box {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.2);
}

    .warning-box h3 {
        color: #721c24;
        margin-bottom: 15px;
        font-size: 1.3em;
        display: flex;
        align-items: center;
    }

        .warning-box h3::before {
            content: "🚨";
            margin-right: 10px;
            font-size: 1.2em;
        }

    .warning-box p {
        color: #721c24;
        font-weight: 500;
        line-height: 1.8;
        margin-bottom: 0;
    }

.timeline {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #6c757d;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

    .timeline-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.timeline-icon {
    width: 40px;
    height: 40px;
    background: #6c757d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 15px;
}

.timeline-content h4 {
    color: #495057;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.timeline-content p {
    color: #6c757d;
    margin-bottom: 0;
}

.help-section {
    background: linear-gradient(135deg, #e2e3e5, #d6d8db);
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
}

    .help-section h3 {
        color: #495057;
        margin-bottom: 15px;
        font-size: 1.4em;
    }

    .help-section p {
        color: #6c757d;
        margin-bottom: 15px;
        font-size: 1.1em;
    }

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(108, 117, 125, 0.3);
}

    .contact-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(108, 117, 125, 0.4);
    }

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .page-title {
        font-size: 2em;
    }

    .section-title {
        font-size: 1.4em;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .steps-container {
        padding: 20px 15px;
    }
}

/* 404 Error Page Styles */
.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(39, 167, 74, 0.9) 0%, rgba(31, 134, 59, 0.9) 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

    .error-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(39, 167, 74, 0.1) 0%, rgba(31, 134, 59, 0.1) 100%);
        animation: shimmer 3s ease-in-out infinite alternate;
    }

@keyframes shimmer {
    0% {
        opacity: 0.1;
    }

    100% {
        opacity: 0.3;
    }
}

.error-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-code {
    font-size: 150px;
    font-weight: 900;
    color: white;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    line-height: 1;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.error-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: spin 3s linear infinite;
    display: inline-block;
