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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: rgb(8, 9, 10);
    color: rgb(255, 255, 255);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background-color: rgba(8, 9, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255) !important;
    text-decoration: none;
}

.brand-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-logo i {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgb(255, 255, 255) !important;
}

.dropdown-menu {
    background-color: rgb(20, 21, 23);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(139, 92, 246, 0.1);
    color: rgb(255, 255, 255);
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgb(255, 255, 255);
    background: transparent;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgb(255, 255, 255);
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(8, 9, 10, 1) 100%);
    position: relative;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-video-container {
    margin-top: 4rem;
    width: 100%;
    max-width: 800px;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.video-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Introduction Section */
.intro-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.intro-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Templates Section */
.templates-section {
    padding: 5rem 0;
}

.template-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.template-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.template-header {
    margin-bottom: 1.5rem;
}

.fork-count {
    background: rgba(139, 92, 246, 0.2);
    color: rgb(139, 92, 246);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.template-card h4 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.template-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.template-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.template-icons i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.template-icons i:hover {
    color: rgb(139, 92, 246);
}

/* Company Logos */
.logos-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.logos-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.testimonial-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Features Section */
.features-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.2));
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: rgb(139, 92, 246);
}

.feature-card h4 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* How it Works */
.how-it-works {
    background: rgba(255, 255, 255, 0.02);
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: rgb(255, 255, 255);
    flex-shrink: 0;
}

.step-content h4 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Modal */
.modal-content {
    background-color: rgb(20, 21, 23);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.demo-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.demo-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 1rem;
}

.footer-brand i {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer h6 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: rgb(139, 92, 246);
    text-decoration: none;
}

.footer-contact a:hover {
    color: rgb(168, 85, 247);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logos-carousel {
        gap: 2rem;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact {
        text-align: left;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .template-card,
    .testimonial-card,
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .logos-carousel {
        gap: 1.5rem;
    }
    
    .logo-item {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.template-card,
.testimonial-card,
.feature-card,
.step-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Pricing Styles */
.pricing-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(8, 9, 10, 1) 100%);
    padding: 120px 0 80px;
}

.pricing-section {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.08);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 0.25rem;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
}

.period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.plan-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: rgb(139, 92, 246);
    margin-right: 0.75rem;
    font-size: 0.875rem;
}

.pricing-footer {
    margin-top: 2rem;
}

.pricing-faq {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: rgb(255, 255, 255);
    border: none;
    font-weight: 600;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(139, 92, 246, 0.1);
    color: rgb(255, 255, 255);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(139, 92, 246, 0.3);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    line-height: 1.6;
}

/* Contact Styles */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(8, 9, 10, 1) 100%);
    padding: 120px 0 80px;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-title {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-label {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgb(255, 255, 255);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: rgb(255, 255, 255);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select option {
    background: rgb(20, 21, 23);
    color: rgb(255, 255, 255);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-check-input:checked {
    background-color: rgb(139, 92, 246);
    border-color: rgb(139, 92, 246);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

.form-check-label a {
    color: rgb(139, 92, 246);
    text-decoration: none;
}

.form-check-label a:hover {
    color: rgb(168, 85, 247);
    text-decoration: underline;
}

.thank-you-container {
    text-align: center;
    padding: 3rem 2rem;
}

.thank-you-content i {
    font-size: 4rem;
    color: rgb(34, 197, 94);
    margin-bottom: 1.5rem;
}

.thank-you-content h2 {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.thank-you-content a {
    color: rgb(139, 92, 246);
    text-decoration: none;
}

.thank-you-content a:hover {
    color: rgb(168, 85, 247);
    text-decoration: underline;
}

.contact-info {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: rgb(139, 92, 246);
}

.contact-info-card h4 {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.contact-info-card a {
    color: rgb(139, 92, 246);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: rgb(168, 85, 247);
    text-decoration: underline;
}

.contact-info-card address {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    line-height: 1.5;
}

/* Legal Pages Styles */
.legal-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(8, 9, 10, 1) 100%);
    padding: 120px 0 80px;
}

.legal-content {
    background: rgba(255, 255, 255, 0.02);
}

.legal-document {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-document h2 {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-document h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-document h3 {
    color: rgb(255, 255, 255);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-document ul {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-document a {
    color: rgb(139, 92, 246);
    text-decoration: none;
}

.legal-document a:hover {
    color: rgb(168, 85, 247);
    text-decoration: underline;
}

.legal-document .contact-info {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.legal-document .contact-info p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgb(8, 9, 10);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}
