* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

body {
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: #ffcc00;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.nav-link {
    color: #f5f5f5;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link i {
    color: #ffcc00;
    font-size: 0.9rem;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
}

.nav-link:hover i, .nav-link.active i {
    color: #ffcc00;
}

.cta-button {
    background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
    color: #121212;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #ffcc00;
    transition: all 0.3s ease;
}

/* Mobile Menu */

/* MAIN CONTENT STYLES FOR TERMS OF SERVICE */
main {
    padding: 120px 0 80px;
    background-color: #1f1f1f;
    position: relative;
    min-height: 100vh;
}

/* Side navigation */
.terms-navigation {
    position: fixed;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
    z-index: 1000;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.nav-title {
    color: #FFD700;
    font-size: 1.2rem;
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-scroll-container {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 5px;
    scrollbar-width: thin;
    scrollbar-color: #FFD700 rgba(255, 215, 0, 0.1);
}

.nav-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.nav-scroll-container::-webkit-scrollbar-thumb {
    background-color: #FFD700;
    border-radius: 3px;
}

.terms-nav-links {
    list-style: none;
    padding-left: 0;
}

.main-link {
    margin-bottom: 5px;
}

.nav-main-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}

.nav-main-link:hover {
    background: rgba(255, 215, 0, 0.15);
}

.nav-main-link.active {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    font-weight: 600;
}

.nav-main-link.active i:first-child {
    color: #FFD700;
}

.nav-main-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: #FFD700;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.nav-main-link.active::before {
    transform: scaleY(1);
}

.nav-main-link i:first-child {
    width: 25px;
    color: #aaa;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-main-link span {
    flex-grow: 1;
}

.submenu-toggle {
    font-size: 0.8rem;
    color: #888;
    transition: transform 0.3s ease, color 0.3s ease;
}

.has-submenu.active .submenu-toggle {
    transform: rotate(180deg);
    color: #FFD700;
}

.submenu {
    list-style: none;
    padding-left: 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.has-submenu.active .submenu {
    max-height: 500px;
}

.submenu .terms-nav-link a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #ccc;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.submenu .terms-nav-link a:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

.submenu .terms-nav-link a.active {
    color: #FFD700;
    font-weight: 500;
    background: rgba(255, 215, 0, 0.15);
}

.submenu .terms-nav-link a.active .small-icon {
    color: #FFD700;
}

.small-icon {
    font-size: 0.5rem;
    margin-right: 10px;
    color: #666;
    transition: color 0.3s ease;
}

/* Progress bar */
.nav-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FFD700, #ffaa00);
    transition: width 0.5s ease;
}

.current-section {
    font-size: 0.85rem;
    color: #FFD700;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Terms container */
.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #2c2c2c;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.terms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #7a41bc, #FFD700);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.terms-container h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.terms-container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Article styling */
.terms-article {
    margin-bottom: 50px;
    background: rgba(40, 40, 40, 0.5);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.terms-container h2 {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.terms-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    border-radius: 2px;
}

.terms-container h3 {
    font-size: 1.4rem;
    color: #FFD700;
    margin: 30px 0 15px;
    position: relative;
    padding-left: 15px;
}

.terms-container h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background: linear-gradient(to bottom, #FFD700, #7a41bc);
    border-radius: 3px;
}

.terms-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.terms-container a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.terms-container a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.terms-container a:hover::after {
    width: 100%;
}

/* Lists */
.terms-container ul {
    margin: 20px 0;
    padding-left: 25px;
}

.terms-container ul li {
    margin-bottom: 12px;
    color: #f5f5f5;
    position: relative;
    padding-left: 20px;
}

.terms-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #FFD700;
    border-radius: 50%;
}

/* Package styles */
.package {
    background: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #FFD700;
    transition: all 0.3s ease;
}

.package:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.package-title {
    font-size: 1.4rem;
    color: #FFD700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.package-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FFD700, transparent);
}

/* VIP package specific */
.vip {
    color: #9c27b0;
    text-shadow: 0 0 10px rgba(156, 39, 176, 0.5);
}

.strategyvip {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .terms-navigation {
        left: 1%;
        width: 260px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #1a1a1a;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .nav-link {
        padding: 12px 15px;
        border-radius: 5px;
        margin-bottom: 5px;
        width: 100%;
    }
    
    .nav-cta {
        width: 100%;
    }
    
    .cta-button {
        justify-content: center;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile terms navigation */
    .mobile-terms-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        margin: 20px 0;
    }

    .main-nav.active .mobile-terms-nav {
        max-height: 60vh;
        overflow-y: auto;
    }

    .mobile-terms-nav .terms-navigation {
        position: static;
        transform: none;
        width: 100%;
        max-height: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .mobile-terms-nav .nav-title {
        cursor: pointer;
        padding: 15px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-terms-nav .nav-scroll-container {
        max-height: auto;
        overflow: hidden;
        transition: max-height 0.5s ease;
        padding: 0 15px;
    }

    .mobile-terms-nav .terms-navigation.active .nav-scroll-container {
        max-height: 500px;
    }

    .mobile-terms-nav .has-submenu .submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .mobile-terms-nav .has-submenu.active .submenu {
        max-height: 500px;
    }

    .mobile-terms-nav .submenu-toggle {
        transition: transform 0.3s ease;
    }

    .mobile-terms-nav .has-submenu.active .submenu-toggle {
        transform: rotate(180deg);
    }

    .mobile-terms-nav .nav-footer {
        display: block
    }

    /* Hide desktop terms navigation */
    .terms-navigation {
        display: none;
    }
}

@media (min-width: 993px) {
    .mobile-terms-nav {
        display: none;
    }
    
    .terms-navigation {
        display: block;
    }
}

@media (max-width: 768px) {
    main {
        padding: 100px 0 60px;
    }
    
    .terms-container {
        padding: 30px 20px;
    }
    
    .terms-container h1 {
        font-size: 2rem;
    }
    
    .terms-container h2 {
        font-size: 1.6rem;
    }
    
    .terms-container h3 {
        font-size: 1.3rem;
    }
    
    .terms-article {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .terms-container h1 {
        font-size: 1.8rem;
    }
    
    .terms-container h2 {
        font-size: 1.4rem;
    }
    
    .terms-container p {
        font-size: 1rem;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
}

/* footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    color: #f5f5f5;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ffaa00, #ffcc00);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo span {
    color: #ffcc00;
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #f5f5f5;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffcc00;
    color: #121212;
    transform: translateY(-3px);
}

.footer-title {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ffcc00;
}

.footer-links ul, .footer-contact ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-links a, .footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-links a i, .footer-legal a i {
    color: #ffcc00;
    font-size: 0.7rem;
}

.footer-links a:hover, .footer-legal a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-contact i {
    color: #ffcc00;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.footer-payment {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: #888;
}

.footer-payment i {
    transition: all 0.3s ease;
}

.footer-payment i:hover {
    color: #ffcc00;
    transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Specifické styly pro sekci 6 */
.highlight-box {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-icon {
    color: #FFD700;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-box p {
    margin: 0;
    color: #f5f5f5;
    font-size: 1.1rem;
}

.highlight-box strong {
    color: #FFD700;
}

.legal-note {
    background-color: rgba(156, 39, 176, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #ccc;
    border-left: 4px solid #9c27b0;
}

.legal-note i {
    color: #9c27b0;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .highlight-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .legal-note {
        flex-direction: column;
        text-align: center;
    }
}

/* GDPR Specifické styly */
.gdpr-intro {
    background: rgba(70, 130, 180, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    border-left: 4px solid #4682B4;
}

.gdpr-icon {
    color: #4682B4;
    font-size: 2rem;
    min-width: 40px;
}

.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.data-card {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border-top: 3px solid #FFD700;
}

.data-card:hover {
    transform: translateY(-5px);
}

.data-card i {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.right-item {
    background: rgba(40, 40, 40, 0.5);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.right-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.right-icon i {
    color: #FFD700;
    font-size: 1.2rem;
}

.contact-dpo {
    background: rgba(30, 30, 30, 0.7);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #FFD700;
}

.dpo-icon {
    color: #FFD700;
    font-size: 1.8rem;
}

.data-retention {
    background: rgba(40, 40, 40, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.data-retention h4 {
    color: #FFD700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .gdpr-intro,
    .contact-dpo {
        flex-direction: column;
        text-align: center;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

/* Reklamační řád Specifické styly */
.complaint-alert {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}

.complaint-alert i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 15px;
}

.alert-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.complaint-timeline {
    margin: 40px 0;
    position: relative;
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
}

.timeline-marker {
    position: relative;
    width: 40px;
    margin-right: 20px;
}

.marker-circle {
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.marker-line {
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: -30px;
    width: 2px;
    background-color: rgba(255, 215, 0, 0.5);
    transform: translateX(-50%);
}

.timeline-item:last-child .marker-line {
    display: none;
}

.timeline-content {
    flex: 1;
    padding-top: 5px;
}

.complaint-scope {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.scope-card {
    background: rgba(40, 40, 40, 0.7);
    padding: 25px;
    border-radius: 8px;
    border-top: 3px solid #4CAF50;
}

.scope-card.not-included {
    border-top-color: #F44336;
}

.scope-card i {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.scope-card h4 {
    color: #FFD700;
    margin-bottom: 15px;
}

.outcome-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.outcome-option {
    text-align: center;
    min-width: 150px;
}

.outcome-option i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 10px;
    display: block;
}

.outcome-note {
    font-style: italic;
    color: #ccc;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .complaint-scope {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
    }
    
    .timeline-marker {
        margin-bottom: 15px;
    }
    
    .marker-line {
        display: none;
    }
}

/* General Styles for All Articles */
.services-intro,
.payment-intro {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    border-left: 4px solid #FFD700;
}

.services-icon,
.payment-icon {
    color: #FFD700;
    font-size: 2rem;
    min-width: 40px;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.package-note {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.package-note i {
    color: #FFD700;
}

/* Delivery Methods */
.delivery-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.method-card {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #FFD700;
}

.method-card i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.payment-method {
    text-align: center;
    min-width: 150px;
}

.payment-method i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 10px;
    display: block;
}

/* Subscription Info */
.subscription-info {
    margin: 25px 0;
}

.subscription-card {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
}

/* Refund Policy */
.refund-policy {
    background: rgba(255, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    border-left: 4px solid #F44336;
}

.refund-policy i {
    color: #F44336;
    font-size: 2rem;
    min-width: 40px;
}

/* Order Process */
.order-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    border-top: 3px solid #FFD700;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* Contract Info */
.contract-info,
.access-info,
.change-restriction {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    border-left: 4px solid #FFD700;
}

.contract-info i,
.access-info i,
.change-restriction i {
    color: #FFD700;
    font-size: 1.8rem;
    min-width: 40px;
}

/* Rights and Obligations */
.rights-obligations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.rights-section,
.obligations-section {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
}

.rights-section {
    border-top: 3px solid #4CAF50;
}

.obligations-section {
    border-top: 3px solid #F44336;
}

.rights-list,
.obligations-list {
    margin-top: 15px;
}

.right-item,
.obligation-item {
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.right-item i {
    color: #4CAF50;
}

.obligation-item i {
    color: #F44336;
}

/* Limitation Grid */
.limitation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.limitation-card {
    background: rgba(40, 40, 40, 0.7);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.limitation-card i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
    display: block;
}

.limitation-card:hover {
    transform: translateY(-5px);
}

/* Highlight Box Variations */
.highlight-box.warning {
    background-color: rgba(255, 87, 34, 0.1);
    border-left-color: #FF5722;
}

.highlight-box.warning .warning-icon {
    color: #FF5722;
}

.highlight-box.important {
    background-color: rgba(233, 30, 99, 0.1);
    border-left-color: #E91E63;
}

.highlight-box.important .warning-icon {
    color: #E91E63;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .package-grid,
    .delivery-methods,
    .rights-obligations,
    .limitation-grid {
        grid-template-columns: 1fr;
    }
    
    .order-process {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-intro,
    .payment-intro,
    .contract-info,
    .access-info,
    .change-restriction,
    .refund-policy {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .order-process {
        grid-template-columns: 1fr;
    }
}

/* BASE STYLES - COMMON FOR ALL DEVICES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

/* COMMON HEADER STYLES */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    color: #ffcc00;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* COMMON MAIN CONTENT STYLES */
main {
    padding: 120px 0 80px;
    background-color: #1f1f1f;
    position: relative;
    min-height: 100vh;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #2c2c2c;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.terms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #7a41bc, #FFD700);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* COMMON ARTICLE STYLES */
.terms-article {
    margin-bottom: 50px;
    background: rgba(40, 40, 40, 0.5);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
}

.terms-container h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
}

/* ====================== */
/* DESKTOP SPECIFIC STYLES */
/* ====================== */
@media (min-width: 993px) {
    /* Desktop Navigation */
    .desktop-nav {
        display: flex;
        align-items: center;
    }
    
    .desktop-nav-links {
        display: flex;
        list-style: none;
        margin-right: 30px;
    }
    
    .desktop-nav-link {
        color: #f5f5f5;
        text-decoration: none;
        padding: 10px 15px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }
    
    .desktop-nav-link i {
        color: #ffcc00;
        font-size: 0.9rem;
    }
    
    .desktop-nav-link:hover, 
    .desktop-nav-link.active {
        background-color: rgba(255, 204, 0, 0.1);
        color: #ffcc00;
    }
    
    .desktop-cta-button {
        background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
        color: #121212;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
    }
    
    .desktop-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(255, 204, 0, 0.4);
    }
    
    /* Desktop Terms Navigation */
    .desktop-terms-nav {
        position: fixed;
        left: 2%;
        top: 50%;
        transform: translateY(-50%);
        width: 280px;
        background: rgba(40, 40, 40, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        padding: 15px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 215, 0, 0.3);
        z-index: 1000;
        max-height: 80vh;
        display: flex;
        flex-direction: column;
    }
    
    .desktop-nav-title {
        color: #FFD700;
        font-size: 1.2rem;
        padding-bottom: 15px;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .desktop-nav-scroll-container {
        overflow-y: auto;
        flex-grow: 1;
        padding-right: 5px;
        scrollbar-width: thin;
        scrollbar-color: #FFD700 rgba(255, 215, 0, 0.1);
    }
    
    .desktop-nav-scroll-container::-webkit-scrollbar {
        width: 6px;
    }
    
    .desktop-nav-scroll-container::-webkit-scrollbar-thumb {
        background-color: #FFD700;
        border-radius: 3px;
    }
    
    .desktop-terms-nav-links {
        list-style: none;
        padding-left: 0;
    }
    
    .desktop-main-link {
        margin-bottom: 5px;
    }
    
    .desktop-nav-main-link {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: #f5f5f5;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .desktop-nav-main-link:hover {
        background: rgba(255, 215, 0, 0.15);
    }
    
    .desktop-nav-main-link.active {
        background: rgba(255, 215, 0, 0.2);
        color: #FFD700;
        font-weight: 600;
    }
    
    .desktop-nav-main-link.active i:first-child {
        color: #FFD700;
    }
    
    .desktop-nav-main-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background-color: #FFD700;
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.3s ease;
    }
    
    .desktop-nav-main-link.active::before {
        transform: scaleY(1);
    }
    
    .desktop-nav-main-link i:first-child {
        width: 25px;
        color: #aaa;
        font-size: 1rem;
        transition: color 0.3s ease;
    }
    
    .desktop-nav-main-link span {
        flex-grow: 1;
    }
    
    .desktop-submenu-toggle {
        font-size: 0.8rem;
        color: #888;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    
    .desktop-has-submenu.active .desktop-submenu-toggle {
        transform: rotate(180deg);
        color: #FFD700;
    }
    
    .desktop-submenu {
        list-style: none;
        padding-left: 30px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .desktop-has-submenu.active .desktop-submenu {
        max-height: 500px;
    }
    
    .desktop-submenu .desktop-terms-nav-link a {
        display: flex;
        align-items: center;
        padding: 10px 15px;
        font-size: 0.9rem;
        color: #ccc;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .desktop-submenu .desktop-terms-nav-link a:hover {
        color: #FFD700;
        background: rgba(255, 215, 0, 0.1);
    }
    
    .desktop-submenu .desktop-terms-nav-link a.active {
        color: #FFD700;
        font-weight: 500;
        background: rgba(255, 215, 0, 0.15);
    }
    
    .desktop-submenu .desktop-terms-nav-link a.active .small-icon {
        color: #FFD700;
    }
    
    .small-icon {
        font-size: 0.5rem;
        margin-right: 10px;
        color: #666;
        transition: color 0.3s ease;
    }
    
    /* Desktop Progress bar */
    .desktop-nav-footer {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .desktop-progress-container {
        width: 100%;
        height: 5px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        overflow: hidden;
        margin-bottom: 10px;
    }
    
    .desktop-progress-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #FFD700, #ffaa00);
        transition: width 0.5s ease;
    }
    
    .desktop-current-section {
        font-size: 0.85rem;
        color: #FFD700;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Hide mobile elements on desktop */
    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-terms-nav {
        display: none;
    }
}

/* ====================== */
/* MOBILE SPECIFIC STYLES */
/* ====================== */
@media (max-width: 992px) {
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger-line {
        width: 25px;
        height: 3px;
        background-color: #ffcc00;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile Navigation */
    .mobile-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: #1a1a1a;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-nav.active {
        left: 0;
    }
    
    .mobile-nav-links {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
        list-style: none;
    }
    
    .mobile-nav-link {
        color: #f5f5f5;
        text-decoration: none;
        padding: 12px 15px;
        border-radius: 5px;
        margin-bottom: 5px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-nav-link i {
        color: #ffcc00;
    }
    
    .mobile-cta-button {
        background: linear-gradient(135deg, #ffcc00 0%, #ffaa00 100%);
        color: #121212;
        padding: 12px 20px;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        margin-top: 10px;
    }
    
    /* Mobile Terms Navigation */
    .mobile-terms-nav {
        width: 100%;
        margin: 20px 0;
    }
    
    .mobile-terms-nav-container {
        background: rgba(40, 40, 40, 0.7);
        border-radius: 8px;
        overflow: hidden;
    }
    
    .mobile-terms-nav-title {
        color: #FFD700;
        font-size: 1.1rem;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(255, 215, 0, 0.1);
        cursor: pointer;
    }
    
    .mobile-terms-nav-arrow {
        transition: transform 0.3s ease;
    }
    
    .mobile-terms-nav-title.active .mobile-terms-nav-arrow {
        transform: rotate(180deg);
    }
    
    .mobile-terms-nav-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }
    
    .mobile-terms-nav-content.active {
        max-height: 500px;
    }
    
    .mobile-terms-nav-links {
        list-style: none;
        padding: 0;
    }
    
    .mobile-terms-link {
        padding: 12px 15px;
        color: #f5f5f5;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .mobile-terms-link i {
        margin-right: 10px;
        color: #ffcc00;
    }
    
    .mobile-terms-nav-item {
        position: relative;
    }
    
    .mobile-submenu-toggle {
        transition: transform 0.3s ease;
    }
    
    .mobile-terms-nav-item.active .mobile-submenu-toggle {
        transform: rotate(180deg);
    }
    
    .mobile-submenu {
        list-style: none;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .mobile-terms-nav-item.active .mobile-submenu {
        max-height: 500px;
    }
    
    .mobile-submenu-link {
        padding: 10px 15px;
        color: #ccc;
        text-decoration: none;
        display: block;
        font-size: 0.9rem;
    }
    
    .mobile-submenu-link i {
        font-size: 0.5rem;
        margin-right: 10px;
    }
    
    /* Hide desktop elements on mobile */
    .desktop-nav,
    .desktop-terms-nav {
        display: none;
    }
    
    /* Adjust main content for mobile */
    main {
        padding: 100px 0 60px;
    }
    
    .terms-container {
        padding: 20px;
    }
}

/* COMMON FOOTER STYLES */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    color: #f5f5f5;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ffaa00, #ffcc00);
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Add more common footer styles as needed */