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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #E53935;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.logo-text {
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
    margin: 0 50px;
    margin: 0 40px;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #E53935;
}

.nav-dropdown svg {
    width: 12px;
    height: 12px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    background: none;
}

.dropdown-item:hover {
    background: rgba(229, 57, 53, 0.1);
    color: #E53935;
}

.login-btn {
    background: #E53935;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: #D32F2F;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%),
        url('https://images.unsplash.com/photo-1633356122544-f134324a6cee?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 24px 60px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Title */
.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    max-width: 800px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-description p {
    margin-bottom: 12px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.star {
    font-size: 18px;
}

.rating-text {
    font-weight: 600;
    color: #ffffff;
}

.stat {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.stat strong {
    color: #ffffff;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    background: #E53935;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    width: fit-content;
}

.cta-button:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
    text-decoration: none;
    color: white;
}

/* Preview Cards */
.preview-cards {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.preview-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 280px;
    transition: all 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 57, 53, 0.3);
}

.preview-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.preview-content {
    padding: 20px;
}

.preview-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.preview-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        padding: 100px 16px 40px;
        background-attachment: scroll;
    }
    
    .feature-tags {
        justify-content: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin: 0 auto 32px;
    }
    
    .hero-stats {
        justify-content: center;
        text-align: center;
    }
    
    .cta-button {
        margin: 0 auto;
        display: flex;
    }
    
    .preview-cards {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }
    
    .preview-card {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .feature-tags {
        gap: 8px;
    }
    
    .tag {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

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

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus states for accessibility */
button:focus,
.nav-link:focus {
    outline: 2px solid #E53935;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000000;
    }
    
    .tag {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
    }
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Styles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
    text-align: left;
}

/* Use Cases Section */
.use-cases-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.use-case-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-content {
    padding: 16px;
}

.use-case-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

/* Remove hyperlink styling from card text */
.use-case-card h3,
.use-case-card p {
    color: #ffffff !important;
    text-decoration: none !important;
}

.use-case-card:visited h3,
.use-case-card:visited p,
.use-case-card:link h3,
.use-case-card:link p,
.use-case-card:hover h3,
.use-case-card:hover p,
.use-case-card:active h3,
.use-case-card:active p {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Ensure card content text color overrides */
.use-case-content h3 {
    color: #ffffff !important;
    text-decoration: none !important;
}

.use-case-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
}

/* Additional comprehensive hyperlink overrides */
a.use-case-card {
    color: inherit !important;
    text-decoration: none !important;
}

a.use-case-card:link,
a.use-case-card:visited,
a.use-case-card:hover,
a.use-case-card:active {
    color: inherit !important;
    text-decoration: none !important;
}

a.use-case-card * {
    color: inherit !important;
    text-decoration: none !important;
}

/* Feature card link styling */
a.feature-card {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}

a.feature-card:link,
a.feature-card:visited,
a.feature-card:hover,
a.feature-card:active {
    color: inherit !important;
    text-decoration: none !important;
}

a.feature-card * {
    color: inherit !important;
    text-decoration: none !important;
}

/* Template card link styling */
a.template-card {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}

a.template-card:link,
a.template-card:visited,
a.template-card:hover,
a.template-card:active {
    color: inherit !important;
    text-decoration: none !important;
}

a.template-card * {
    color: inherit !important;
    text-decoration: none !important;
}

/* Demo card link styling */
a.demo-card {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}

a.demo-card:link,
a.demo-card:visited,
a.demo-card:hover,
a.demo-card:active {
    color: inherit !important;
    text-decoration: none !important;
}

a.demo-card * {
    color: inherit !important;
    text-decoration: none !important;
}

/* Use case card link styling */
a.use-case-card {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}

a.use-case-card:link,
a.use-case-card:visited,
a.use-case-card:hover,
a.use-case-card:active {
    color: inherit !important;
    text-decoration: none !important;
}

a.use-case-card * {
    color: inherit !important;
    text-decoration: none !important;
}

.use-case-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Features Section */
.features-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card.large {
    grid-row: span 2;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-badge {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.translation-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

/* Templates Section */
.templates-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.template-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.template-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.template-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.template-content {
    padding: 16px;
}

.template-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    
    .feature-card.large {
        grid-row: span 1;
        grid-column: span 2;
    }
    
    .templates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .use-cases-section,
    .features-section,
    .templates-section {
        padding: 60px 0;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card.large {
        grid-column: span 1;
    }
    
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .use-cases-grid,
    .templates-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
        text-align: center;
    }
}

/* Demo Section */
.demo-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.demo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.demo-nav-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.demo-nav-arrow:hover {
    background: rgba(229, 57, 53, 0.2);
    border-color: rgba(229, 57, 53, 0.4);
    transform: scale(1.1);
}

.demo-content {
    flex: 1;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Demo Cards (Left Side) */
.demo-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    width: 200px;
}

.demo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.demo-card.active {
    opacity: 1;
    border-color: rgba(229, 57, 53, 0.5);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.2);
}

.demo-card:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(229, 57, 53, 0.3);
}

.demo-card-image {
    width: 100%;
    height: 80px;
    overflow: hidden;
}

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

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

.demo-card-content {
    padding: 12px 16px;
}

.demo-card-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.demo-card-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Main Demo Display */
.demo-main {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    max-width: 800px;
}

.demo-main-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.demo-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.demo-info {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    z-index: 10;
}

.demo-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.demo-badge {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.demo-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.demo-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-value {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.demo-description {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.demo-cta-button {
    background: #E53935;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-cta-button:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

/* Responsive Design for Demo Section */
@media (max-width: 1024px) {
    .demo-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .demo-nav-arrow {
        display: none;
    }
    
    .demo-content {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .demo-cards {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding: 0 0 10px;
    }
    
    .demo-card {
        min-width: 160px;
    }
    
    .demo-main {
        max-width: 100%;
    }
    
    .demo-info {
        position: static;
        transform: none;
        max-width: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        padding: 24px;
        border-radius: 12px;
        margin-top: -80px;
        margin-left: 20px;
        margin-right: 20px;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .demo-section {
        padding: 60px 0;
    }
    
    .demo-container {
        padding: 0 16px;
    }
    
    .demo-title {
        font-size: 28px;
    }
    
    .demo-description {
        font-size: 14px;
    }
    
    .demo-badges {
        gap: 6px;
    }
    
    .demo-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .demo-cards {
        gap: 12px;
    }
    
    .demo-card {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .demo-info {
        margin-left: 10px;
        margin-right: 10px;
        padding: 20px;
    }
    
    .demo-title {
        font-size: 24px;
    }
    
    .demo-cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .demo-badges {
        justify-content: center;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

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

.form-group.full-width {
    width: 100%;
}

.form-group.flex-grow {
    flex-grow: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(229, 57, 53, 0.5);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 7px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #1a1a2e;
    color: #ffffff;
    padding: 12px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 8px;
}

.form-checkbox input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox input[type="checkbox"]:checked {
    background: #E53935;
    border-color: #E53935;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.form-checkbox label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    cursor: pointer;
}

.form-privacy {
    margin-top: 8px;
}

.form-privacy p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.privacy-link {
    color: #E53935;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #D32F2F;
    text-decoration: underline;
}

.contact-submit-btn {
    background: #E53935;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
}

.contact-submit-btn:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 57, 53, 0.4);
}

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

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        padding: 0 16px;
    }
    
    .contact-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-row:has(.form-group:first-child input[placeholder="+1"]) {
        flex-direction: row;
        gap: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .contact-form {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 24px;
    }
    
    .form-checkbox {
        gap: 8px;
    }
    
    .form-checkbox label {
        font-size: 13px;
    }
    
    .form-privacy p {
        font-size: 11px;
    }
    
    .contact-submit-btn {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not([value=""]),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(244, 67, 54, 0.5);
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: rgba(76, 175, 80, 0.3);
}

/* Focus states for accessibility */
.form-checkbox input[type="checkbox"]:focus {
    outline: 2px solid rgba(229, 57, 53, 0.5);
    outline-offset: 2px;
}

.contact-submit-btn:focus {
    outline: 2px solid rgba(229, 57, 53, 0.5);
    outline-offset: 2px;
}

/* Use Cases Selection Section */
.use-cases-selection-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.use-cases-selection-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.use-cases-selection-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.use-cases-selection-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Use Case Tabs */
.use-case-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.use-case-tab {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.use-case-tab:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.use-case-tab.active {
    background: #E53935;
    border-color: #E53935;
    color: #ffffff;
}

.use-case-tab.active:hover {
    background: #D32F2F;
    border-color: #D32F2F;
}

/* Use Case Content Grid */
.use-case-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.use-case-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.use-case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-card-image img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 8px;
    transition: all 0.3s ease;
}

.use-case-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.use-case-card-content {
    padding: 24px;
}

.use-case-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.use-case-card-content > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 20px;
}

.use-case-features {
    margin-bottom: 24px;
}

.use-case-features h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

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

.use-case-features li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.use-case-features li::before {
    content: "•";
    color: #E53935;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.use-case-cta {
    background: #E53935;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.use-case-cta:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

/* Bottom CTA */
.use-cases-bottom-cta {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-cases-bottom-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.view-pricing-btn {
    background: transparent;
    color: #E53935;
    border: 2px solid #E53935;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-pricing-btn:hover {
    background: #E53935;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

/* Responsive Design for Use Cases Selection */
@media (max-width: 1024px) {
    .use-case-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .use-cases-selection-section {
        padding: 60px 0;
    }
    
    .use-cases-selection-container {
        padding: 0 16px;
    }
    
    .use-cases-selection-title {
        font-size: 28px;
    }
    
    .use-cases-selection-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .use-case-tabs {
        gap: 6px;
        margin-bottom: 32px;
    }
    
    .use-case-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .use-case-content-grid {
        margin-bottom: 48px;
    }
    
    .use-case-card-image {
        height: 200px;
    }
    
    .use-case-card-content {
        padding: 20px;
    }
    
    .use-case-card-content h3 {
        font-size: 18px;
    }
    
    .use-cases-bottom-cta {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .use-cases-selection-title {
        font-size: 24px;
    }
    
    .use-case-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }
    
    .use-case-tab {
        flex-shrink: 0;
    }
    
    .use-case-card-image {
        height: 180px;
    }
    
    .use-case-card-content {
        padding: 16px;
    }
    
    .use-cases-bottom-cta p {
        font-size: 14px;
    }
    
    .view-pricing-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
}

/* Tab Content Animation */
.use-case-content-grid {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.use-case-content-grid.fade-out {
    opacity: 0;
}

/* FAQ Section */
.faq-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
    border-color: rgba(229, 57, 53, 0.3);
    background: rgba(229, 57, 53, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #E53935;
}

.faq-arrow {
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.6);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #E53935;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.faq-contact {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-contact p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.support-link {
    color: #E53935;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #D32F2F;
    text-decoration: underline;
}

/* Industries Section */
.industries-section {
    background: #000000;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.industries-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 48px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.industry-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-item:hover {
    transform: translateY(-4px);
    border-color: rgba(229, 57, 53, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.industry-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-item:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 16px;
    text-align: center;
}

.industry-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.industry-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design for FAQ and Industries */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .faq-section,
    .industries-section {
        padding: 60px 0;
    }
    
    .faq-container,
    .industries-container {
        padding: 0 16px;
    }
    
    .faq-title,
    .industries-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 14px;
        margin-bottom: 32px;
    }
    
    .faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px;
    }
    
    .faq-contact {
        padding: 24px;
    }
    
    .faq-contact p {
        font-size: 14px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .industry-image {
        height: 100px;
    }
    
    .industry-content {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .faq-title,
    .industries-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 14px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .industry-image {
        height: 80px;
    }
    
    .industry-content {
        padding: 10px;
    }
    
    .industry-content h3 {
        font-size: 13px;
    }
    
    .industry-content p {
        font-size: 11px;
    }
}

/* FAQ JavaScript functionality */
.faq-item {
    transition: all 0.3s ease;
}

.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer Section */
.footer-section {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-content-secondary {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 48px;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    background: #E53935;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.footer-logo-text {
    color: #E53935;
    letter-spacing: 0.5px;
}

.footer-company-info {
    margin-top: 16px;
}

.company-address {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 8px;
}

.company-email {
    font-size: 14px;
    margin: 0;
}

.company-email a {
    color: #E53935;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-email a:hover {
    color: #D32F2F;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-column a::before {
    content: ">";
    color: rgba(255, 255, 255, 0.5);
    margin-right: 8px;
    font-size: 12px;
}

.footer-column a:hover {
    color: #E53935;
}

.footer-column a:hover::before {
    color: #E53935;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    flex: 1;
}

.footer-copyright p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
    text-align: right;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #E53935;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .footer-content-secondary {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .footer-content,
    .footer-content-secondary {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-logo-column {
        grid-column: span 1;
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        text-align: center;
    }
    
    .footer-legal-links {
        order: 2;
    }
    
    .footer-copyright {
        order: 1;
    }
    
    .footer-copyright p {
        text-align: center;
        font-size: 10px;
    }
    
    .scroll-to-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .footer-column h4 {
        font-size: 15px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .footer-copyright p {
        font-size: 9px;
        line-height: 1.3;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-section {
        background-attachment: scroll;
    }
}
/* Privacy Policy Styles */
.privacy-main {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    min-height: 100vh;
    color: #ffffff;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #E53935);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 2.5rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E53935;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: #ffffff;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.privacy-content .contact-info {
    background: rgba(229, 57, 53, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #E53935;
}

.privacy-content .contact-info p {
    margin-bottom: 0.5rem;
}

.privacy-content .contact-info a {
    color: #E53935;
    text-decoration: none;
}

.privacy-content .contact-info a:hover {
    text-decoration: underline;
}

/* Cache Buster Mon Jun 23 10:45:52 AM UTC 2025 */
/* Force refresh 1750675694 */
