/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A1A1A; /* Dark Charcoal */
    color: #F8F8F8; /* Off-White */
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.bg-dark-gradient {
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%); /* Dark gradient for sections */
    color: #F8F8F8;
}

.text-primary-orange {
    color: #FF5722 !important;
}

.border-bottom-orange {
    border-color: #FF5722 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #F8F8F8;
}

.section-title {
    color: #FF5722;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FF5722;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

a {
    color: #FF5722;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FF8C00; /* Lighter orange on hover */
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none; /* Ensure no underline */
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FF5722;
    border-color: #FF5722;
    color: #1A1A1A; /* Dark text on orange button */
}

.btn-primary:hover {
    background-color: #E64A19;
    border-color: #E64A19;
    color: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background-color: #333333;
    border-color: #333333;
    color: #F8F8F8;
}

.btn-secondary:hover {
    background-color: #444444;
    border-color: #444444;
    color: #F8F8F8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.form-control {
    background-color: #333333;
    border: 1px solid #555555;
    color: #F8F8F8;
    border-radius: 8px;
    padding: 10px 15px;
}

.form-control::placeholder {
    color: #BBBBBB;
}

.form-control:focus {
    background-color: #444444;
    border-color: #FF5722;
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
    color: #F8F8F8;
}

.invalid-feedback {
    color: #FF8C00; /* Orange for error messages */
    font-size: 0.875em;
}

/* Header/Navigation */
.main-header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 87, 34, 0.2);
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #F8F8F8 !important;
    display: flex;
    align-items: center;
}

.navbar-brand:hover {
    color: #FF5722 !important;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
    transition: filter 0.3s ease;
}

.navbar-brand:hover .logo-img {
    filter: brightness(1) invert(0) sepia(1) saturate(10000%) hue-rotate(330deg); /* Makes logo orange */
}

.navbar-nav .nav-link {
    color: #F8F8F8 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #FF5722;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border-color: #FF5722;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 87, 34, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: url('images/uploads/Constructor_Of_Creates_Drawings_Clothes_Closet_A_Fashion_The_Designs_Designer_Items_Implementation_On_Creation_Ideas_And_Sewing_Patterns_Of_Technical_Specialist.jpg') no-repeat center center/cover;
    position: relative;
    color: #F8F8F8;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Adjust for fixed header */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #FF5722;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    color: #CCCCCC;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Animations for Hero Section (initial load) */
.animate-on-load-text {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.8s ease-out forwards;
}

.animate-on-load-text.delay-1 {
    animation-delay: 0.3s;
}

.animate-on-load-cta {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFadeIn 0.8s ease-out forwards 0.6s;
}

.animate-on-load-image {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRightFadeIn 0.8s ease-out forwards 0.9s;
}

@keyframes slideUpFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRightFadeIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* About Section */
.about-section p {
    color: #CCCCCC;
    font-size: 1.1rem;
}

/* Services Section */
.service-card {
    background-color: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    border-color: #FF5722;
}

.service-icon {
    font-size: 3rem;
    color: #FF5722;
    margin-bottom: 15px;
}

.service-card .card-title {
    color: #F8F8F8;
    font-weight: 600;
}

.service-card .card-text {
    color: #CCCCCC;
}

/* Features Section */
.feature-item {
    background-color: #2A2A2A;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%; /* Ensure equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    border: 1px solid #FF5722;
}

.feature-icon {
    font-size: 2.5rem;
    color: #FF5722;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #F8F8F8;
    font-weight: 600;
}

.feature-item p {
    color: #CCCCCC;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-card {
    background-color: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    border-color: #FF5722;
}

.pricing-card .card-title {
    color: #FF5722;
    font-size: 1.8rem;
}

.price-display {
    color: #F8F8F8;
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-features li {
    margin-bottom: 10px;
    color: #CCCCCC;
    font-size: 1rem;
}

.pricing-features li i {
    color: #FF5722;
}

.pricing-toggle-features {
    color: #FF5722 !important;
    font-weight: 500;
}

.pricing-toggle-features:hover {
    color: #FF8C00 !important;
}

.pricing-toggle-features i {
    transition: transform 0.3s ease;
}

.pricing-toggle-features[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Portfolio Section */
.portfolio-card {
    background-color: #2A2A2A;
    border: 1px solid #3A3A3A;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    border-color: #FF5722;
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover img {
    transform: scale(1.05);
}

.portfolio-card .card-body {
    padding: 20px;
    flex-grow: 1;
}

.portfolio-card .card-title {
    color: #FF5722;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-card .card-text {
    color: #CCCCCC;
    font-size: 0.95rem;
}

.badge {
    background-color: #444444 !important;
    color: #F8F8F8 !important;
    font-weight: 400;
    padding: 0.5em 0.8em;
    border-radius: 5px;
}

/* Industries Section */
.industry-item {
    background-color: #2A2A2A;
    border-color: #3A3A3A;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    border-color: #FF5722;
}

.industry-item h3 {
    color: #FF5722;
}

.industry-item p {
    color: #CCCCCC;
}

.industry-icon {
    font-size: 3.5rem;
    color: #FF5722;
}

.industry-item .counter {
    color: #F8F8F8;
    font-size: 3.5rem;
}

/* How It Works Section */
.process-step {
    height: 100%; /* Ensure equal height */
    background-color: #2A2A2A;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.2);
    border: 1px solid #FF5722;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #FF5722;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.4);
}

.step-icon {
    font-size: 2.5rem;
    color: #1A1A1A;
}

.process-step h3 {
    color: #F8F8F8;
    margin-bottom: 10px;
}

.process-step p {
    color: #CCCCCC;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonial-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    min-height: 300px; /* Ensure space for content */
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-color: #2A2A2A;
    border-radius: 15px;
    border: 1px solid #3A3A3A;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.testimonial-item.active {
    opacity: 1;
    position: relative; /* Make active item take up space */
}

.avatar-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #FF5722;
}

.testimonial-item h4 {
    color: #FF5722;
}

.testimonial-item p.small {
    color: #BBBBBB;
}

.testimonial-item blockquote p {
    font-style: italic;
    color: #F8F8F8;
    font-size: 1.1rem;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 87, 34, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    font-size: 1.5rem;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: #FF5722;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev i, .carousel-control-next i {
    color: #1A1A1A;
}

.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 87, 34, 0.5);
    border: none;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #FF5722;
    transform: scale(1.2);
}

/* Newsletter Section */
.newsletter-form .input-group {
    max-width: 500px;
}

.newsletter-form .form-control {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-right: none;
}

.newsletter-form .btn-primary {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    border-left: none;
}

.newsletter-form .form-control:focus + .btn-primary {
    border-color: #FF5722;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
}

.contact-form .form-control {
    border-radius: 8px;
}

.contact-form .btn-primary {
    border-radius: 8px;
    padding: 15px 30px;
}

/* CTA Section (Sticky Footer) */
.cta-bar {
    background-color: #FF5722;
    color: #1A1A1A;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1020;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUpFadeInCta 0.6s ease-out forwards;
    animation-delay: 2s; /* Delay appearance after page load */
}

.cta-bar p {
    font-weight: 500;
    color: #1A1A1A;
}

.cta-bar .btn-light {
    background-color: #F8F8F8;
    color: #FF5722;
    border-color: #F8F8F8;
    padding: 8px 20px;
}

.cta-bar .btn-light:hover {
    background-color: #EEEEEE;
    color: #E64A19;
}

@keyframes slideUpFadeInCta {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
.main-footer {
    margin-bottom: 90px;
    background-color: #000000;
    color: #CCCCCC;
    border-top: 1px solid rgba(255, 87, 34, 0.1);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F8F8F8 !important;
    display: inline-flex;
    align-items: center;
}

.footer-brand:hover {
    color: #FF5722 !important;
}

.footer-brand .logo-img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-brand:hover .logo-img {
    filter: brightness(1) invert(0) sepia(1) saturate(10000%) hue-rotate(330deg);
}

.footer-links a {
    color: #BBBBBB !important;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF5722 !important;
}

/* Modals */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header, .modal-footer {
    border-color: rgba(255, 87, 34, 0.3) !important;
}

.modal-title {
    color: #FF5722;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Makes it white */
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 1040;
    border-radius: 15px;
    border: 1px solid rgba(255, 87, 34, 0.3);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-out forwards;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: #CCCCCC;
}

.cookie-banner .btn-primary {
    background-color: #FF5722;
    border-color: #FF5722;
    color: #1A1A1A;
}

.cookie-banner .btn-secondary {
    background-color: #444444;
    border-color: #444444;
    color: #F8F8F8;
}

.form-check-label {
    color: #F8F8F8;
}

.form-check-input:checked {
    background-color: #FF5722;
    border-color: #FF5722;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 87, 34, 0.25);
}

/* Animations on Scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-stagger {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll-stagger.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-stagger.delay-0.is-visible { transition-delay: 0s; }
.animate-on-scroll-stagger.delay-1.is-visible { transition-delay: 0.1s; }
.animate-on-scroll-stagger.delay-2.is-visible { transition-delay: 0.2s; }
.animate-on-scroll-stagger.delay-3.is-visible { transition-delay: 0.3s; }
.animate-on-scroll-stagger.delay-4.is-visible { transition-delay: 0.4s; }
.animate-on-scroll-stagger.delay-5.is-visible { transition-delay: 0.5s; }

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .pricing-section .row {
        flex-direction: column !important;
    }
    .pricing-section .col-md-4 {
        width: 100% !important;
    }
    #features .row {
        flex-direction: column !important;
    }
    .features-section .col-md-3 {
        width: 100% !important;
    }
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        border-radius: 10px;
        margin-top: 10px;
        padding: 15px;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-image {
        max-height: 350px;
    }

    .newsletter-form .input-group {
        width: 100% !important;
    }

    .cta-bar p {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 10px;
    }

    .cta-bar .btn {
        width: 100%;
    }

    .cta-bar {
        flex-direction: column;
        padding: 15px;
    }

    .testimonial-carousel-wrapper {
        padding: 0;
    }

    .carousel-control-prev, .carousel-control-next {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
    }

    .carousel-control-prev {
        left: -15px;
    }

    .carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-section .col-md-6 {
        text-align: center !important;
    }

    .hero-image {
        margin-top: 30px !important;
    }

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

    .cookie-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: unset;
    }
}/* New Stock Typography Styles for .rightsCloudWrap */

/* Wrapper padding for general content areas */
.rightsCloudWrap {
    padding-top: 3rem; /* Top padding for the content wrapper */
    padding-bottom: 3rem; /* Bottom padding for the content wrapper */
    padding-left: 1.5rem; /* Left padding for the content wrapper */
    padding-right: 1.5rem; /* Right padding for the content wrapper */
    color: #F8F8F8; /* Default text color within this wrapper */
}

/* Heading 1 styles for general content */
.rightsCloudWrap h1 {
    font-size: 2.2rem; /* Moderate size for main content headings */
    margin-top: 2.5rem; /* Top margin for spacing before H1 */
    margin-bottom: 1.5rem; /* Bottom margin for spacing after H1 */
    line-height: 1.2; /* Line height for readability */
    color: #F8F8F8; /* Heading color */
    font-weight: 700; /* Bold font weight */
}

/* Heading 2 styles for general content */
.rightsCloudWrap h2 {
    font-size: 1.8rem; /* Slightly smaller than H1 */
    margin-top: 2rem; /* Top margin for spacing before H2 */
    margin-bottom: 1.2rem; /* Bottom margin for spacing after H2 */
    line-height: 1.3; /* Line height */
    color: #F8F8F8; /* Heading color */
    font-weight: 600; /* Semi-bold font weight */
}

/* Heading 3 styles for general content */
.rightsCloudWrap h3 {
    font-size: 1.5rem; /* Smaller than H2 */
    margin-top: 1.8rem; /* Top margin for spacing before H3 */
    margin-bottom: 1rem; /* Bottom margin for spacing after H3 */
    line-height: 1.4; /* Line height */
    color: #F8F8F8; /* Heading color */
    font-weight: 600; /* Semi-bold font weight */
}

/* Heading 4 styles for general content */
.rightsCloudWrap h4 {
    font-size: 1.25rem; /* Smaller than H3 */
    margin-top: 1.5rem; /* Top margin for spacing before H4 */
    margin-bottom: 0.8rem; /* Bottom margin for spacing after H4 */
    line-height: 1.5; /* Line height */
    color: #F8F8F8; /* Heading color */
    font-weight: 500; /* Medium font weight */
}

/* Heading 5 styles for general content */
.rightsCloudWrap h5 {
    font-size: 1.1rem; /* Smaller than H4, still distinct */
    margin-top: 1.2rem; /* Top margin for spacing before H5 */
    margin-bottom: 0.6rem; /* Bottom margin for spacing after H5 */
    line-height: 1.5; /* Line height */
    color: #F8F8F8; /* Heading color */
    font-weight: 500; /* Medium font weight */
}

/* Paragraph styles for general content */
.rightsCloudWrap p {
    font-size: 1rem; /* Base paragraph font size */
    margin-bottom: 1rem; /* Bottom margin for paragraphs */
    line-height: 1.7; /* Increased line height for better readability */
    color: #CCCCCC; /* Lighter text color for body copy */
}

/* Unordered list styles for general content */
.rightsCloudWrap ul {
    list-style: disc; /* Default disc style for unordered lists */
    margin-top: 1rem; /* Top margin for lists */
    margin-bottom: 1rem; /* Bottom margin for lists */
    padding-left: 1.5rem; /* Indentation for list items */
    color: #CCCCCC; /* List item color */
}

/* List item styles for general content */
.rightsCloudWrap li {
    font-size: 1rem; /* Font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
    color: #CCCCCC; /* List item color */
}

/* Optional: Styles for nested lists */
.rightsCloudWrap ul ul {
    list-style: circle; /* Use circle for nested lists */
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.rightsCloudWrap ul ul ul {
    list-style: square; /* Use square for deeply nested lists */
}
