.coming-soon-btn {
    background: #ccc !important;
    color: #888 !important;
    cursor: not-allowed !important;
    /* Inherit all layout, padding, and sizing from .download-btn */
}
.coming-soon-btn .fa-clock {
    font-size: 1.2em;
    margin: 0 4px 0 0;
    display: flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
}

/* Suggestion Bar */
.suggestion-bar {
    background: #333;
    color: #FFD700;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    border-bottom: 3px solid #FFD700;
    box-sizing: border-box;
}

.suggestion-bar a {
    color: #FFD700;
    text-decoration: underline;
    font-weight: 600;
}

.suggestion-bar a:hover {
    color: #fff;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* Homepage with suggestion bar */
body.homepage header {
    top: 46px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

nav ul a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

nav ul a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

nav ul a:hover {
    color: #000;
}

nav ul a:hover::after {
    width: 100%;
}

.contact-button {
    background: linear-gradient(45deg, #000, #333);
    color: #FFD700 !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.contact-button:hover {
    background: linear-gradient(45deg, #333, #000);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Homepage hero with suggestion bar */
body.homepage .hero {
    padding: 196px 0 100px;
}

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

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

.cta-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
    position: relative;
}

.features h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
    animation: underlineGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes underlineGrow {
    0% { width: 0; opacity: 0; }
    60% { width: 100px; opacity: 1; }
    100% { width: 80px; opacity: 0.8; }
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FFD700;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

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

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #333);
    color: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #fff;
    position: relative;
}

.about h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
    animation: underlineGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: #FFD700;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.contact h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
    animation: underlineGrow 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.email-link {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Footer */
footer {
    background: #000;
    color: #FFD700;
    text-align: center;
    padding: 2rem 0;
}

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

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.5s both;
}

.slide-up {
    animation: slideUp 1s ease-out 1s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .logo {
        height: 40px;
    }
    
    header {
        padding: 0.5rem 0;
    }
    
    /* All headers should be below suggestion bar on mobile */
    header {
        top: 38px;
    }
    
    body.homepage header {
        top: 38px;
    }
    
    nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-nav-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: none;
        border: none;
        cursor: pointer;
        order: 2;
        padding: 8px;
        margin-left: auto;
        width: 36px;
        height: 36px;
        position: relative;
        z-index: 1002;
    }
    
    .hamburger-line {
        width: 24px;
        height: 4px;
        background-color: #000;
        margin: 3px 0;
        transition: all 0.3s ease;
        transform-origin: center;
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    
    .mobile-nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }    .contact-button {
        order: 1;
        margin-left: auto;
        margin-right: 0.5rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 200px;
        background: linear-gradient(135deg, #FFD700, #FFA500);
        box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        flex-direction: column;
        gap: 0;
        z-index: 1001;
        border-radius: 8px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul a {
        font-size: 1rem;
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: center;
        position: static;
    }
    
    nav ul a::after {
        display: none;
    }
    
    nav ul a:hover {
        color: #000;
        background: rgba(255, 255, 255, 0.2);
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .contact-button {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        padding: 8px 12px;
        min-width: auto;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        border-radius: 6px;
        transition: background 0.3s ease;
    }
    
    .contact-button:hover {
        background: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .contact-button i {
        display: inline-block !important;
        font-size: 1.2rem;
        color: #000 !important;
        transition: color 0.3s ease;
    }
    
    .contact-button:hover i {
        color: #333 !important;
    }
    
    .contact-button .contact-text {
        display: none !important;
        visibility: hidden !important;
    }
    
    /* Ensure proper mobile header layout */
    @media (max-width: 900px) {
        nav {
            position: relative;
        }
        
        .mobile-nav-toggle {
            position: relative;
            z-index: 1002;
        }
    }
    
    .hero {
        padding: 80px 0 60px; /* Normal padding for non-homepage */
    }
    
    body.homepage .hero {
        padding: 120px 0 60px; /* Extra padding for homepage with suggestion bar */
    }
    
    .page-hero {
        padding: 80px 0 60px; /* Normal padding for other pages */
    }
    
    .suggestion-bar {
        font-size: 0.9rem;
        padding: 10px 0;
        min-height: 50px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile header positioning - different for homepage vs other pages */
    header {
        top: 0 !important; /* Other pages: header at top with no suggestion bar */
    }
    
    body.homepage header {
        top: 60px !important; /* Homepage: header below suggestion bar */
    }

    .contact-button {
        margin: 0;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card i {
        font-size: 2.5rem !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

/* Desktop nav toggle hidden */
@media (min-width: 769px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

/* Desktop contact button - text only, yellow text on black background */
.contact-button {
    background: #000;
    color: #FFD700;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.contact-button:hover {
    background: #333;
    color: #FFA500;
    transform: translateY(-1px);
}

.contact-button i {
    display: none;
}

.contact-button .contact-text {
    display: inline;
    color: inherit;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .legal-content {
        padding: 2rem 1rem;
    }
}

/* New Pages Styles */
.page-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.services-intro h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FFD700;
}

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

.service-card i {
    color: #FFD700;
    margin-bottom: 1.5rem;
}

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

/* Downloads Page Styles */
.downloads-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.downloads-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.downloads-section h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
}

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

.download-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.download-card i {
    color: #FFD700;
    margin-bottom: 1rem;
}


.download-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    vertical-align: middle;
}

.download-btn i {
    color: #000 !important;
    font-size: 1.2em;
    margin: 0 4px 0 0;
    display: flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.info-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.req-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.req-item i {
    color: #FFD700;
    font-size: 1.2rem;
}

/* Team Page Styles */
.team-members {
    padding: 80px 0;
    background-color: #fff;
}

.team-members h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.team-members h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
}

.history-intro {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #FFD700;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.member-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image i {
    color: #000;
    font-size: 90px !important;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-info h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card, .contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-info-card h2, .contact-form-card h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #FFD700;
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #FFD700;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.submit-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #fff;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.pricing-intro h2::after {
    content: '';
    display: block;
    margin: 16px auto 0 auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 2px;
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border-top: 4px solid #FFD700;
}

.pricing-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.pricing-header i {
    color: #FFD700;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.pricing-body {
    padding: 2rem;
}

.price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.price-details {
    text-align: center;
    color: #666;
}

.price-details i {
    color: #FFD700;
    margin-right: 0.5rem;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.support-item h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    flex: 1;
}

.support-item .price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-left: 1rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-info .price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.price-info .price-detail {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.2rem;
}

/* Legal Section Styles */
.legal-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #333;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

/* Footer Styles */
footer {
    background: #000;
    color: #FFD700;
    padding: 1.5rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFD700;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #FFD700;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-copyright a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-copyright a:hover {
    color: #FFF;
    text-decoration: underline;
}

/* Legal Tabs Section */
.legal-tabs-section {
    padding: 6rem 0 3rem 0;
    min-height: 80vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-tabs-section h1 {
    text-align: center;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.legal-tabs-section > .container > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.legal-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.2), 0 6px 16px rgba(0,0,0,0.1);
}

.tab-navigation {
    display: flex;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.tab-button {
    flex: 1;
    padding: 1.2rem 2rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,215,0,0.1), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    background: rgba(255,215,0,0.05);
    color: #333;
    transform: translateY(-1px);
}

.tab-button.active {
    color: #000;
    background: #fff;
    border-bottom-color: #FFD700;
    box-shadow: 0 -2px 8px rgba(255,215,0,0.2);
}

.tab-content {
    padding: 2.5rem;
    background: #fff;
    min-height: 500px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

.tab-panel h2 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.tab-panel h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 2px;
}

.tab-panel h3 {
    color: #444;
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
    font-weight: 600;
    border-left: 4px solid #FFD700;
    padding-left: 1rem;
}

.tab-panel h4 {
    color: #555;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.tab-panel h5 {
    color: #666;
    margin: 1.2rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.tab-panel p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #FFD700;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, transparent 0%, rgba(255,215,0,0.05) 100%);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.back-link a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transition: left 0.3s ease;
    z-index: -1;
}

.back-link a:hover::before {
    left: 0;
}

.back-link a:hover {
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

@media (max-width: 768px) {
    .legal-tabs-section {
        padding: 4rem 0 2rem 0;
    }
    
    .legal-tabs-section h1 {
        font-size: 2rem;
    }
    
    .legal-card {
        margin: 0 1rem;
        border-radius: 12px;
    }
    
    .tab-navigation {
        flex-direction: column;
    }
    
    .tab-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .tab-content {
        padding: 1.5rem;
        min-height: 400px;
    }
    
    .tab-panel h2 {
        font-size: 1.6rem;
    }
    
    .tab-panel h3 {
        font-size: 1.2rem;
    }
    
    .back-link a {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Mobile Responsiveness for new pages */
@media (max-width: 768px) {
    footer {
        padding: 1rem 0 0.5rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
    
    .footer-legal {
        margin-top: 0.5rem;
    }
    
    .footer-legal a {
        font-size: 0.8rem;
    }
    
    .footer-copyright {
        padding-top: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .requirements {
        text-align: left;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .support-item .price-amount {
        margin-left: 0;
    }
    
    .price-info {
        align-items: center;
        text-align: center;
    }
}