/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* some base resets for consistency */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-gradient: linear-gradient(135deg, #e94560 0%, #c73650 100%);
    --primary-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
}

/* Decorative background elements */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Responsive container widths */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 40px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
        padding: 0 60px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 80px;
    }
}

/* Cookie Notice with glassmorphism */
/* Cookie Notice - Google Consent Mode v2 Compliant */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    padding: 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
}

.cookie-header {
    margin-bottom: 25px;
}

.cookie-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.cookie-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-description a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-description a:hover {
    color: #ff6b85;
}

/* Cookie Settings */
.cookie-settings {
    margin: 25px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.category-info {
    flex: 1;
}

.category-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--white);
}

.category-info p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .toggle-slider {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-toggle input:disabled + .toggle-slider:before {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 25px;
}

.cookie-btn {
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}


/* Header with glassmorphism */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.header.scrolled::after {
    transform: scaleX(1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.1;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Premium Split Design */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        height: auto;
        max-height: none;
    }
}

/* Background Container */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transform: scale(1.15);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: kenBurns 20s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-slide-bg.active {
    opacity: 1;
    transform: scale(1);
    animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
    0%, 100% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

/* Ensure hero background container contains all slides */
.hero-bg-container {
    overflow: hidden;
}

.hero-slider-wrapper {
    overflow: hidden;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(233, 69, 96, 0.3) 100%);
}

.hero-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    z-index: 2;
    animation: meshMove 15s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(233, 69, 96, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
    background-size: 200% 200%;
    animation: particlesMove 20s linear infinite;
}

@keyframes particlesMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Main Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
    align-items: center;
    box-sizing: border-box;
    overflow: visible;
}

/* Hero layout responsive */
@media (min-width: 1400px) {
    .hero-layout {
        max-width: 1600px;
        padding: 0 60px;
        gap: 40px;
    }
}

@media (min-width: 1920px) {
    .hero-layout {
        max-width: 1800px;
        padding: 0 80px;
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .hero-layout {
        gap: 40px;
        padding: 0 30px;
    }
}

/* Left Side - Content */
.hero-left {
    position: relative;
    z-index: 11;
    color: var(--white);
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.hero-content-inner {
    max-width: 600px;
    animation: contentSlideIn 1s ease-out;
    width: 100%;
}

@media (min-width: 1400px) {
    .hero-content-inner {
        max-width: 700px;
    }
}

@media (min-width: 1920px) {
    .hero-content-inner {
        max-width: 800px;
    }
}

@keyframes contentSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tag */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: tagFadeIn 0.8s ease-out 0.2s both;
}

@keyframes tagFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.7);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(233, 69, 96, 0);
    }
}

/* Main Title */
.hero-main-title {
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 20px 0;
    letter-spacing: -3px;
}

.title-word {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: titleGradient 4s ease infinite;
    position: relative;
}

.word-1 {
    animation-delay: 0s;
}

.word-2 {
    animation-delay: 0.2s;
    margin-left: 20px;
}

.word-3 {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #ffffff 0%, #e94560 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    margin-left: 40px;
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Description */
.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 550px;
    width: 100%;
}

@media (min-width: 1400px) {
    .hero-description {
        max-width: 650px;
        font-size: clamp(18px, 1.5vw, 22px);
    }
}

@media (min-width: 1920px) {
    .hero-description {
        max-width: 750px;
        font-size: clamp(20px, 1.3vw, 24px);
    }
}

.text-accent {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
}

@media (min-width: 1400px) {
    .hero-stats {
        gap: 30px;
        margin-bottom: 50px;
    }
}

@media (min-width: 1920px) {
    .hero-stats {
        gap: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .hero-stats {
        gap: 15px;
    }
}

.stat-card {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 69, 96, 0.5);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.stat-value {
    font-size: 42px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

@media (min-width: 1400px) {
    .stat-value {
        font-size: 48px;
    }
}

@media (min-width: 1920px) {
    .stat-value {
        font-size: 56px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .stat-value {
        font-size: 38px;
    }
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

@media (min-width: 1400px) {
    .stat-label {
        font-size: 13px;
    }
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.action-primary {
    padding: 18px 35px;
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
}

.action-primary .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.action-primary:hover .btn-shine {
    left: 100%;
}

.action-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.5);
}

.action-primary .btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.action-primary:hover .btn-icon {
    transform: translateX(5px);
}

.action-secondary {
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.action-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Quick Links */
.hero-quick-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(233, 69, 96, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.link-icon {
    font-size: 18px;
}

/* Right Side - Visual */
.hero-right {
    position: relative;
    z-index: 11;
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;
}

@media (min-width: 1400px) {
    .hero-visual-wrapper {
        max-width: 600px;
        height: 600px;
        max-height: 75vh;
    }
}

@media (min-width: 1920px) {
    .hero-visual-wrapper {
        max-width: 650px;
        height: 650px;
        max-height: 70vh;
    }
}

@media (max-width: 1024px) {
    .hero-visual-wrapper {
        max-width: 550px;
        height: 550px;
    }
}

/* Feature Cards */
.hero-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8) rotateY(20deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.feature-card.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    z-index: 3;
}

.feature-card:not(.active) {
    z-index: 1;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.feature-card:hover .card-image {
    transform: scale(1.1);
}

/* Prevent image from going out of bounds */
.feature-card {
    overflow: hidden;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.feature-card.active .card-content {
    transform: translateY(0);
}

.card-badge {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent-gradient);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 5;
}

.float-item {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
    pointer-events: none;
}

.float-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.float-3 {
    bottom: 20%;
    right: -25px;
    animation-delay: 2s;
}

@media (max-width: 1200px) {
    .float-item {
        font-size: 11px;
        padding: 8px 14px;
    }

    .float-1 {
        right: -15px;
    }

    .float-2 {
        right: -20px;
    }

    .float-3 {
        right: -18px;
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) translateX(-10px);
        opacity: 1;
    }
}

/* Navigation controls removed - slider auto-plays only */


.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 10s ease-out;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.7) 0%, rgba(22, 33, 62, 0.6) 50%, rgba(233, 69, 96, 0.4) 100%);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.3) 50%, rgba(26, 26, 46, 0.6) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    z-index: 3;
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: badgeSlide 0.8s ease-out 0.3s both;
}

@keyframes badgeSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-icon {
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* Hero Title */
.hero-title-wrapper {
    margin-bottom: 25px;
    position: relative;
    animation: titleSlide 1s ease-out 0.5s both;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite, textGlow 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.title-line-1 {
    margin-bottom: 5px;
}

.title-line-2 {
    background: linear-gradient(135deg, #ffffff 0%, #e94560 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(233, 69, 96, 0.6)); }
}

.title-underline {
    width: 120px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 20px auto 0;
    border-radius: 2px;
    animation: underlineExpand 1s ease-out 1s both;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

@keyframes underlineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 120px;
        opacity: 1;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    animation: subtitleFade 1s ease-out 0.7s both;
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-text {
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Hero Features */
.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 45px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    animation: featuresSlide 1s ease-out 0.9s both;
}

@keyframes featuresSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    font-size: 32px;
    animation: iconBounce 2s ease-in-out infinite;
}

.feature-item:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.feature-item:nth-child(3) .feature-icon {
    animation-delay: 0.2s;
}

.feature-item:nth-child(5) .feature-icon {
    animation-delay: 0.4s;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-number {
    font-size: 28px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.feature-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.feature-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: buttonsFade 1s ease-out 1.1s both;
}

@keyframes buttonsFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero-primary {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.5);
}

.btn-hero-primary .btn-arrow {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--white);
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}


/* Slide Content Indicator */
.hero-slide-content {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 12;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-content {
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.slide-content.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.slide-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.slide-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Controls */
/* Hero controls removed - slider auto-plays only */

/* Hero Progress Bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 13;
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    gap: 20px;
}

.indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.indicator.active,
.indicator:hover {
    opacity: 1;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.indicator.active .indicator-dot {
    width: 40px;
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.indicator-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.indicator.active .indicator-label {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-outline:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 20px 0;
}

.decorative-line {
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 20px auto;
    border-radius: 2px;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.decorative-line::before {
    left: -20px;
}

.decorative-line::after {
    right: -20px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

@media (min-width: 1400px) {
    .section-title {
        font-size: 48px;
    }
}

@media (min-width: 1920px) {
    .section-title {
        font-size: 56px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .section-title {
        font-size: 38px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

@media (min-width: 1400px) {
    .section-title::after {
        width: 80px;
        height: 5px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Vehicles Section with parallax effect */
.vehicles-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.vehicles-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 1400px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1920px) {
    .vehicles-grid {
        gap: 50px;
    }
}

@media (max-width: 1200px) and (min-width: 1025px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.vehicle-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 15px;
}

.vehicle-card:hover::before {
    opacity: 0.05;
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.vehicle-card .vehicle-info {
    position: relative;
    z-index: 2;
}

.vehicle-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

/* Ensure vehicle card contains scaled image */
.vehicle-card {
    overflow: hidden;
}

.vehicle-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(26, 26, 46, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.1);
}

.vehicle-card:hover .vehicle-image::after {
    opacity: 1;
}

.vehicle-info {
    padding: 25px;
}

.vehicle-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.vehicle-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    padding: 100px 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

/* Service card already has overflow: hidden from .service-card */

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.service-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        height: 250px;
    }
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

.services-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--accent-gradient);
    transition: height 0.3s ease;
}

.accordion-item.active::before {
    height: 100%;
}

.accordion-item:hover {
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.1);
    transform: translateX(5px);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.1;
    transition: width 0.3s ease;
}

.accordion-header:hover::after {
    width: 100%;
}

.accordion-header:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.accordion-icon {
    font-size: 24px;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    color: var(--white);
    border-radius: 50%;
    font-weight: bold;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Parts Section */
.parts-section {
    background: var(--bg-light);
}

.parts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

@media (min-width: 1400px) {
    .parts-content {
        gap: 70px;
    }
}

@media (min-width: 1920px) {
    .parts-content {
        gap: 100px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .parts-content {
        gap: 40px;
    }
}

.parts-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid;
    border-image: var(--accent-gradient) 1;
    border-radius: 10px;
    opacity: 0.2;
    animation: rotate-border 10s linear infinite;
}

@keyframes rotate-border {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.parts-image {
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

/* Ensure parent container contains scaled image */
.parts-content {
    overflow: visible;
}

.parts-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.3);
}

.parts-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    mix-blend-mode: overlay;
}

.parts-image:hover::before {
    opacity: 0.2;
}

.parts-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.parts-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.parts-list {
    list-style: none;
    margin-bottom: 30px;
}

.parts-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.parts-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    will-change: transform;
    backface-visibility: hidden;
    /* Prevent background from moving out of bounds */
    min-width: 100%;
    min-height: 100%;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (min-width: 1400px) {
    .about-content {
        gap: 80px;
    }
}

@media (min-width: 1920px) {
    .about-content {
        gap: 100px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .about-content {
        gap: 50px;
    }
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    width: 4px;
    height: 80%;
    background: var(--accent-gradient);
    transform: translateY(-50%);
    border-radius: 2px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(233, 69, 96, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 0;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
    will-change: transform;
    backface-visibility: hidden;
    /* Prevent background from moving out of bounds */
    min-width: 100%;
    min-height: 100%;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (min-width: 1400px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1920px) {
    .testimonials-grid {
        gap: 50px;
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.2);
    border-color: rgba(233, 69, 96, 0.3);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Financing Section */
.financing-section {
    background: var(--white);
}

.financing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (min-width: 1400px) {
    .financing-content {
        gap: 70px;
    }
}

@media (min-width: 1920px) {
    .financing-content {
        gap: 100px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .financing-content {
        gap: 40px;
    }
}

.financing-text h2 {
    margin-bottom: 20px;
}

.financing-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.financing-list {
    list-style: none;
    margin-bottom: 30px;
}

.financing-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.financing-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.financing-image {
    height: 400px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

/* Ensure parent container contains scaled image */
.financing-content {
    overflow: visible;
}

.financing-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.financing-image:hover::after {
    opacity: 1;
}

.financing-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(233, 69, 96, 0.3);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (min-width: 1400px) {
    .contact-content {
        gap: 70px;
    }
}

@media (min-width: 1920px) {
    .contact-content {
        gap: 100px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .contact-content {
        gap: 40px;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.05) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
    z-index: 0;
}

.contact-form > * {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ripple effect for buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Additional decorative elements */
.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    opacity: 0.5;
}

/* Gradient text animation */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet and Medium Screens */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-layout {
        gap: 50px;
        padding: 0 30px;
    }

    .hero-main-title {
        font-size: clamp(48px, 6vw, 64px);
    }

    .hero-visual-wrapper {
        max-width: 500px;
        height: 500px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-value {
        font-size: 36px;
    }

    .parts-content,
    .financing-content {
        gap: 40px;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets */
@media (max-width: 900px) and (min-width: 769px) {
    .hero-layout {
        gap: 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-value {
        font-size: 32px;
    }
}

/* Large Desktop Screens (FullHD and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 80px;
    }

    section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 80px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-left {
        padding: 80px 0;
    }

    .hero-right {
        padding: 80px 0;
    }
}

/* Medium Large Screens (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
        padding: 0 60px;
    }

    .hero-layout {
        max-width: 1600px;
        padding: 0 60px;
    }
}

/* Standard Desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .hero-layout {
        padding: 0 50px;
        gap: 50px;
    }
}

/* Small Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        padding: 0 30px;
    }

    .hero-layout {
        padding: 0 30px;
        gap: 40px;
    }

    .hero-visual-wrapper {
        max-width: 500px;
        height: 500px;
    }
}

/* Large Desktop Screens (FullHD and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 80px;
    }

    section {
        padding: 100px 0;
    }

    .section-header {
        margin-bottom: 80px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-left {
        padding: 80px 0;
    }

    .hero-right {
        padding: 80px 0;
    }
}

/* Medium Large Screens (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
        padding: 0 60px;
    }

    .hero-layout {
        max-width: 1600px;
        padding: 0 60px;
    }
}

/* Standard Desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }

    .hero-layout {
        padding: 0 50px;
        gap: 50px;
    }
}

/* Small Desktop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .container {
        padding: 0 30px;
    }

    .hero-layout {
        padding: 0 30px;
        gap: 40px;
    }

    .hero-visual-wrapper {
        max-width: 500px;
        height: 500px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero Mobile */
    .hero {
        min-height: auto;
        height: auto;
        padding: 80px 0 60px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-left {
        padding: 0;
        order: 2;
    }

    .hero-right {
        padding: 0;
        order: 1;
        height: 400px;
    }

    .hero-visual-wrapper {
        height: 100%;
        max-width: 100%;
    }

    .hero-main-title {
        font-size: 42px;
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .word-2 {
        margin-left: 10px;
    }

    .word-3 {
        margin-left: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-quick-links {
        justify-content: center;
    }

    .feature-card {
        border-radius: 20px;
    }

    .card-content {
        padding: 30px 20px;
    }

    .card-title {
        font-size: 24px;
    }

    .floating-elements {
        display: none;
    }

    /* Navigation controls removed */


    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 600px;
    }

    .hero-content-wrapper {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        margin-bottom: 30px;
    }

    .feature-divider {
        width: 40px;
        height: 1px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-slide-content {
        display: none;
    }

    .hero-pattern {
        opacity: 0.5;
    }

    .hero-gradient-overlay {
        background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.4) 50%, rgba(26, 26, 46, 0.7) 100%);
    }

    /* Hero controls removed */

    .hero-indicators {
        bottom: 60px;
        gap: 15px;
    }

    .indicator-label {
        font-size: 10px;
    }


    .section-title {
        font-size: 32px;
    }

    .parts-content,
    .financing-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .parts-image,
    .financing-image {
        height: 300px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1;
        min-width: 150px;
    }

    /* Cookie notice mobile styles already defined above */
}

/* Large Mobile */
@media (max-width: 640px) and (min-width: 481px) {
    .hero-main-title {
        font-size: 38px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }

    .word-2 {
        margin-left: 5px;
    }

    .word-3 {
        margin-left: 10px;
    }

    .hero-features {
        padding: 15px;
    }

    .feature-item {
        gap: 8px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature-number {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
    }

    .vehicles-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* Thanks Page Styles */
.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Policy Pages Styles */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-header {
    margin-bottom: 40px;
}

.policy-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-header p {
    color: var(--text-light);
    font-size: 16px;
}

.policy-content h2,
.policy-content h3,
.policy-content h4 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h2 {
    font-size: 32px;
}

.policy-content h3 {
    font-size: 24px;
}

.policy-content h4 {
    font-size: 20px;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-content li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

