/* ScraperX E-Ticaret Site Stilleri */

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.4);
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #343a40;
    color: white;
    border: 2px solid #343a40;
}

.btn-secondary:hover {
    background-color: #23272b;
    border-color: #23272b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 58, 64, 0.3);
}

/* Header Stilleri */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* GÜNCELLEME: Navbar link/marka stil tekrarı giderildi */
.navbar-brand a {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.navbar-brand i {
    margin-right: 8px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #007bff;
}

/* Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f8f9fa;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 2rem;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Main Content */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #007bff;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }
    
    .navbar-brand {
        order: 1;
        flex: 1;
    }
    
    .navbar-brand a {
        font-size: 18px;
    }
    
    .navbar-menu {
        order: 3;
        width: 100%;
        display: none;
        background: #f8f9fa;
        border-radius: 8px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #dee2e6;
        width: 100%;
    }
    
    .navbar-nav li {
        width: 100%;
    }
    
    .navbar-nav a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav a:hover {
        background: #e9ecef;
        color: #007bff;
    }
    
    .navbar-actions {
        width: 100%;
        margin-top: 0;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .user-actions {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .user-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 1rem;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .login-link, .register-link {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white !important;
    }
    
    .login-link:hover, .register-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,123,255,0.3);
        opacity: 1 !important;
        background: linear-gradient(135deg, #0056b3, #004085) !important;
    }
    
    .cart-link {
        background: #28a745;
        color: white !important;
    }
    
    .cart-link:hover {
        background: #218838;
        transform: translateY(-2px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #e9ecef;
        border-radius: 6px;
        margin-top: 0.5rem;
        width: 100%;
        padding: 0.5rem;
    }
    
    .dropdown-menu a {
        color: #495057 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 4px;
    }
    
    .dropdown-menu a:hover {
        background: #dee2e6 !important;
        color: #007bff !important;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Logo boyutunu küçült */
    .site-logo .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .site-logo .logo-text {
        font-size: 18px;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px); /* Footer için yer bırak */
    padding-top: 0; /* Header sticky olduğu için padding */
}

/* Basic Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0.75rem;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 0.75rem;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 0.75rem;
}

@media (max-width: 768px) {
    .col-md-6,
    .col-md-4,
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 8px 12px;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    width: 200px;
}

.search-box button {
    border: none;
    background: none;
    cursor: pointer;
    color: #6c757d;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-actions a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.user-actions a:hover {
    background: #f8f9fa;
}

.user-actions a:not(.register-link):hover {
    background: #f8f9fa;
}

.login-link:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f8f9fa;
}

.register-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    border: none;
}

.register-link:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a419a) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    opacity: 1 !important;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ana İçerik */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hero Animation Background */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Telegram hero için özel stil */
.telegram-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}
.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 70%;
    animation-delay: 2s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 85%;
    animation-delay: 3s;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 80%;
    left: 15%;
    animation-delay: 4s;
}

.shape-6 {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 5%;
    animation-delay: 5s;
}

/* Particles */
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particle-float 8s linear infinite;
}

.particle-1 {
    width: 4px;
    height: 4px;
    top: 90%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 85%;
    left: 40%;
    animation-delay: 1s;
}

.particle-3 {
    width: 3px;
    height: 3px;
    top: 95%;
    left: 60%;
    animation-delay: 2s;
}

.particle-4 {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 80%;
    animation-delay: 3s;
}

.particle-5 {
    width: 4px;
    height: 4px;
    top: 90%;
    left: 10%;
    animation-delay: 4s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    top: 85%;
    left: 70%;
    animation-delay: 5s;
}

.particle-7 {
    width: 3px;
    height: 3px;
    top: 95%;
    left: 30%;
    animation-delay: 6s;
}

.particle-8 {
    width: 5px;
    height: 5px;
    top: 88%;
    left: 90%;
    animation-delay: 7s;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Ürün Kartları */
.featured-products {
    padding: 60px 0;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsive için grid ayarları */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1rem;
    font-size: 1.2rem;
}

.rating {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
}

.rating .fa-star {
    color: #ddd;
}

.rating .fa-star.active {
    color: #ffc107;
}

.price {
    padding: 0 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem 1rem 1rem;
}

.product-actions .btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
}

.product-actions .btn i {
    margin-right: 4px;
}

/* Logo Stilleri */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* GÜNCELLEME: navbar-brand a tekrarı giderildi */
.navbar-brand a {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.logo-text .highlight {
    color: #ff6b35;
    -webkit-text-fill-color: #ff6b35;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}

.footer-logo .logo-text {
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* SVG Logo Stilleri */
.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.footer-logo-svg {
    height: 35px;
    width: auto;
    margin-right: 10px;
    filter: brightness(1.2);
}

/* Ana Sayfa Büyük Logo */
.hero-logo {
    height: 60px;
    width: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.features-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-left {
    flex: 1;
    max-width: 45%;
}

.features-right {
    flex: 1;
    max-width: 55%;
}

.features-text {
    margin-bottom: 40px;
}

.features-text h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.features-text p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.features-image {
    max-width: 100%;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 123, 255, 0.1);
    transition: transform 0.3s ease;
}

.features-image img:hover {
    transform: scale(1.02);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

.feature-icon i {
    position: relative;
    z-index: 2;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feature-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .features-left,
    .features-right {
        max-width: 100%;
        flex: none;
    }
    
    .features-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .features-text p {
        font-size: 1rem;
        text-align: center;
    }
    
    .features-text {
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }
}

/* Other Products Section */
.other-products-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
}

.other-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #28a745, transparent);
}

/* Product Purchase Section */
.product-purchase-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.telegram-bot-product {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.1);
    border: 2px solid rgba(0, 136, 204, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.telegram-bot-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #005999, #0088cc);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0088cc, #005999);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.product-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

.product-info h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 136, 204, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 136, 204, 0.1);
}

.product-features .feature {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
}

.product-features .feature i {
    color: #28a745;
    margin-right: 10px;
    font-size: 14px;
    flex-shrink: 0;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    border: 2px solid #e9ecef;
}

.price-info {
    flex: 1;
    text-align: left;
}

.price-label {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 8px;
    font-weight: 500;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0088cc;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 136, 204, 0.1);
}

.price-note {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 500;
}

.purchase-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    min-width: 180px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-large i {
    margin-right: 8px;
}

/* Telegram Bot Illustration */
.telegram-bot-product .features-image img {
    filter: drop-shadow(0 10px 20px rgba(0, 136, 204, 0.1));
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .other-products-section {
        padding: 60px 0;
    }
    
    .telegram-bot-product {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .product-info h3 {
        font-size: 1.5rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .product-pricing {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .purchase-actions {
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        min-width: auto;
    }
}

/* Telegram Bot Page Styles */
.telegram-hero {
    background: linear-gradient(135deg, #0088cc 0%, #005999 50%, #003d66 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.telegram-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float-background 20s linear infinite;
}

@keyframes float-background {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-right {
    flex: 0 0 400px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.telegram-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.telegram-hero h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-features .feature-item i {
    color: #00b4d8;
    font-size: 1.4rem;
    min-width: 20px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 180, 216, 0.3));
}

.hero-features .feature-item span {
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: block;
    margin-top: 30px;
}

.hero-phone img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Telegram Features */
.telegram-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card.highlight {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0088cc, #28a745, #ffc107, #6f42c1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card.highlight:hover::before {
    transform: scaleX(1);
}

.feature-card.highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.feature-card.highlight .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0088cc, #005999);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.feature-card.highlight .feature-icon.green {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.feature-card.highlight .feature-icon.yellow {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.feature-card.highlight .feature-icon.purple {
    background: linear-gradient(135deg, #6f42c1, #5a32a3);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.feature-card.highlight h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card.highlight p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card.highlight ul {
    list-style: none;
    padding: 0;
}

.feature-card.highlight ul li {
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e9ecef;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #0088cc;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0088cc, #005999);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    color: #0088cc;
    font-size: 30px;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: white;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 3px solid #0088cc;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0088cc, #28a745, #ffc107);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.price-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0088cc;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0088cc;
    margin: 0 5px;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.pricing-features h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #495057;
}

.pricing-features ul li i {
    color: #28a745;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
}

.guarantee {
    margin-top: 15px;
    color: #28a745;
    font-weight: 500;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #0088cc;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0088cc, #005999);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.trust-badges .badge i {
    font-size: 1.1rem;
    color: #4fc3f7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .telegram-hero {
        padding: 60px 0;
    }
    
    .telegram-hero .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-right {
        flex: none;
        max-width: 300px;
    }
    
    .telegram-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-features .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .hero-features .feature-item i {
        font-size: 1.6rem;
    }
    
    .hero-cta {
        margin-top: 20px;
    }
    
    .features-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-card {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #343a40, #2c3e50);
    color: white;
    padding: 3rem 0 1rem 0;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #007bff, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.4rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #e9ecef;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #007bff;
    transform: translateX(5px);
}

.footer-section p {
    color: #ced4da;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #495057, #343a40);
    border-radius: 50%;
    color: #adb5bd;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    border-color: rgba(255,255,255,0.3);
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #e9ecef;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.contact-info p:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.2);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
    border-color: rgba(0,123,255,0.3);
}

.contact-info i {
    width: 20px;
    margin-right: 12px;
    color: #007bff;
    font-size: 14px;
}

.contact-info a {
    color: #e9ecef;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
    color: #adb5bd;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Cookie Popup Styles - Optimized */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    will-change: transform;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-popup-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-popup-text {
    flex: 1;
}

.cookie-popup h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-popup p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cookie-popup-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s ease;
}

.cookie-btn-accept {
    background: #28a745;
    color: white;
}

.cookie-btn-accept:hover {
    background: #218838;
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    padding: 8px 16px;
}

.cookie-btn-settings:hover {
    background: rgba(255,255,255,0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #343a40;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #f8f9fa;
    color: #dc3545;
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-modal-body > p {
    margin-bottom: 24px;
    color: #6c757d;
    line-height: 1.6;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    margin-bottom: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.cookie-setting-info {
    flex: 1;
    margin-right: 24px;
}

.cookie-setting-info h4 {
    margin: 0 0 8px 0;
    color: #343a40;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-setting-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-setting-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-select {
    padding: 8px 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    background: white;
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.cookie-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.cookie-select:hover:not(:disabled) {
    border-color: #adb5bd;
}

.cookie-select.disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #dee2e6;
}

.cookie-select option {
    padding: 8px;
    background: white;
    color: #495057;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #28a745;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-disabled {
    background: #e9ecef;
    color: #6c757d;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn-save {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.cookie-btn-save:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.cookie-modal-link {
    padding: 0 24px 24px;
    text-align: center;
}

.cookie-modal-link a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-modal-link a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-popup .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-popup-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-popup-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-modal {
        padding: 10px;
    }
    
    .cookie-modal-content {
        max-height: 95vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body {
        padding: 20px;
    }
    
    .cookie-setting-item {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .cookie-setting-info {
        margin-right: 0;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
        padding: 16px 20px;
    }
    
    .cookie-btn {
        width: 100%;
        margin: 0;
    }
}

/* Legal Pages Specific Styling - Sadece legal sayfalara etki eder */
.legal-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 20px 0;
}

.legal-page * {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.legal-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow-x: hidden;
}

.legal-page .row {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: nowrap;
    overflow-x: hidden;
}

.legal-page .col-md-3 {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
}

.legal-page .col-md-9 {
    flex: 1;
    min-width: 0;
    overflow-x: hidden;
}

/* Legal Sidebar */
.legal-page .legal-sidebar {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    position: sticky;
    top: 20px;
}

.legal-page .legal-nav h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legal-page .legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-page .legal-nav li {
    margin-bottom: 4px;
}

.legal-page .legal-nav > ul > li > a {
    display: block;
    color: #495057;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.legal-page .legal-nav > ul > li > a:hover {
    background: #f8f9fa;
    color: #2c3e50;
    border-left-color: #6c757d;
}

.legal-page .legal-nav > ul > li > a.active {
    background: #f8f9fa;
    color: #2c3e50;
    border-left-color: #007bff;
    font-weight: 600;
}

/* Legal Section Headers */
.legal-page .legal-section h5 {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 20px 0 10px 0;
    padding: 8px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Legal Submenu */
.legal-page .legal-submenu {
    margin-left: 15px;
    border-left: 2px solid #e9ecef;
    padding-left: 0;
    margin-top: 8px;
}

.legal-page .legal-submenu li {
    margin-bottom: 2px;
}

.legal-page .legal-submenu a {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.legal-page .legal-submenu a:hover {
    background: #f8f9fa;
    color: #495057;
    border-left-color: #6c757d;
}

.legal-page .legal-submenu a.active {
    background: #e3f2fd;
    color: #007bff;
    border-left-color: #007bff;
    font-weight: 600;
}

/* Legal Content */
.legal-page .legal-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Legal Page Header */
.legal-page .page-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 35px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-page .page-header h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.legal-page .page-header h1 i {
    color: #007bff;
    font-size: 1.8rem;
    background: rgba(0, 123, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
}

.legal-page .page-header .text-muted {
    color: #6c757d !important;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-page .page-header .text-muted:before {
    content: '📅';
    font-size: 1rem;
}

.legal-page .legal-content h1 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #007bff;
}

.legal-page .legal-content h2 {
    color: #34495e;
    font-size: 1.6rem;
    margin: 30px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid #007bff;
}

.legal-page .legal-content h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin: 25px 0 12px 0;
}

.legal-page .legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-page .legal-content ul,
.legal-page .legal-content ol {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
}

.legal-page .legal-content li {
    margin-bottom: 8px;
}

/* Legal Info Boxes */
.legal-page .info-box {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #17a2b8;
}

.legal-page .info-box h4 {
    color: #0c5460;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.legal-page .info-box p {
    color: #0c5460;
    margin-bottom: 8px;
}

.legal-page .security-measures {
    background: #f1f8e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.legal-page .security-measures h4 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.legal-page .security-measures ul {
    margin: 0;
    color: #388e3c;
}

/* Contact Info Box - Fixed for Legal Pages */
.legal-page .contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
    margin-top: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid #dee2e6;
    overflow: hidden;
    word-wrap: break-word;
}

.legal-page .contact-info h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.legal-page .contact-info h3:before {
    content: '📞';
    font-size: 1.2rem;
    background: rgba(0, 123, 255, 0.1);
    padding: 8px;
    border-radius: 6px;
}

/* Contact info içeriği için özel grid düzeni */
.legal-page .contact-info > p {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    color: #495057;
    font-size: 1rem;
    line-height: 1.8;
}

/* Her satır için özel stil */
.legal-page .contact-info .contact-line {
    display: block;
    margin: 8px 0;
    padding: 8px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.legal-page .contact-info .company-name {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.legal-page .contact-info .address-line {
    color: #495057;
    margin: 5px 0;
    display: block;
}

.legal-page .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(222, 226, 230, 0.5);
}

.legal-page .contact-info .contact-item:last-child {
    border-bottom: none;
}

.legal-page .contact-info .contact-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 130px;
    flex-shrink: 0;
    margin-right: 10px;
}

.legal-page .contact-info .contact-value {
    color: #495057;
    word-break: break-all;
    overflow-wrap: anywhere;
    flex: 1;
}

/* Email ve web linkler için özel stil */
.legal-page .contact-info .contact-value a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
}

.legal-page .contact-info .contact-value a:hover {
    text-decoration: underline;
}

/* KVKK Notice Box */
.legal-page .kvkk-notice {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 20px;
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    word-wrap: break-word;
}

.legal-page .kvkk-notice p {
    margin: 0;
    color: #e65100;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.legal-page .kvkk-notice i {
    margin-top: 3px;
    color: #ff9800;
    flex-shrink: 0;
}

.legal-page .kvkv-notice strong {
    color: #e65100;
    font-weight: 600;
}

/* Cookie Notice Box */
.legal-page .cookie-notice {
    background: #d1ecf1;
    border-left: 4px solid #17a2b8;
    padding: 20px;
    margin-top: 25px;
    border-radius: 8px;
    overflow: hidden;
    word-wrap: break-word;
}

.legal-page .cookie-notice p {
    margin: 0;
    color: #0c5460;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.legal-page .cookie-notice i {
    margin-top: 3px;
    color: #17a2b8;
    flex-shrink: 0;
}

.legal-page .cookie-notice strong {
    color: #0c5460;
    font-weight: 600;
}

/* Contact info için responsive düzen */
@media (max-width: 768px) {
    .legal-page .contact-info {
        padding: 20px;
        margin-top: 20px;
    }
    
    .legal-page .contact-info h3 {
        font-size: 1.1rem;
    }
    
    .legal-page .contact-info p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* Cookie Categories */
.legal-page .cookie-category {
    margin: 25px 0;
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
}

.legal-page .cookie-category.essential {
    border-left: 4px solid #dc3545;
    background: #fdf2f2;
}

.legal-page .cookie-category.analytics {
    border-left: 4px solid #28a745;
    background: #f2f8f3;
}

.legal-page .cookie-category.functionality {
    border-left: 4px solid #007bff;
    background: #f2f6ff;
}

.legal-page .cookie-category.marketing {
    border-left: 4px solid #ffc107;
    background: #fffcf2;
}

.legal-page .cookie-category h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-page .cookie-category.essential h3 { color: #dc3545; }
.legal-page .cookie-category.analytics h3 { color: #28a745; }
.legal-page .cookie-category.functionality h3 { color: #007bff; }
.legal-page .cookie-category.marketing h3 { color: #e09900; }

/* Last Updated Box */
.legal-page .last-updated {
    background: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    margin-top: 30px;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
    .legal-page .row {
        flex-direction: column;
        gap: 20px;
    }
    
    .legal-page .col-md-3,
    .legal-page .col-md-9 {
        flex: none;
        width: 100%;
    }
    
    .legal-page .legal-sidebar {
        position: static;
    }
    
    .legal-page .legal-content {
        padding: 25px 20px;
    }
    
    .legal-page .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-page .legal-content h2 {
        font-size: 1.4rem;
    }
    
    .legal-page .legal-nav {
        text-align: center;
    }
    
    .legal-page .legal-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .legal-page .legal-nav a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Responsive Logo */
@media (max-width: 768px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .hero-logo {
        height: 50px;
    }
    
    /* Footer Mobil */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-bottom {
        margin: 0 -20px -3rem -20px;
    }
}

/* Page Header Stilleri */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0 3rem 0;
    margin-bottom: 3rem;
    border-bottom: none;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 i {
    color: #ffd700;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.page-description {
    max-width: 600px;
    margin: 0 auto; /* Açıklamayı merkeze hizala */
}

/* Sepet Sayfası Stilleri */
.cart-section {
    padding: 2rem 0;
}

.cart-container {
    display: block;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.cart-items {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.cart-header h2 {
    color: #343a40;
    font-size: 1.5rem;
}

.cart-header h2 i {
    color: #007bff;
    margin-right: 0.5rem;
}

.clear-cart-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.clear-cart-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #fafafa;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Sepet Paket İkonları */
.cart-package-icon {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: relative;
}

.cart-package-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    margin-bottom: 4px;
}

.cart-package-duration {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Sepet paket renkleri */
.cart-package-icon.package-icon-1month {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.cart-package-icon.package-icon-3month {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.cart-package-icon.package-icon-6month {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.cart-package-icon.package-icon-1year {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.cart-package-icon.package-icon-telegram {
    background: linear-gradient(135deg, #0088cc, #005580);
}

.cart-package-icon.package-icon-default {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.item-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.item-name {
    font-weight: 600;
    color: #343a40;
    font-size: 1.1rem;
}

.item-price {
    color: #007bff;
    font-weight: 600;
    font-size: 1rem;
}

.item-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: white;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: #007bff;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #f8f9fa;
    color: #0056b3;
}

.quantity-input {
    border: none;
    text-align: center;
    width: 50px;
    padding: 0.5rem 0;
    font-weight: 600;
    background: none;
}

.item-total {
    font-weight: bold;
    color: #343a40;
    font-size: 1.1rem;
}

.remove-item {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: #c82333;
    transform: scale(1.1);
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.summary-card h3 {
    color: #343a40;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.summary-card h3 i {
    color: #007bff;
    margin-right: 0.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    color: #6c757d;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 1.2rem;
    color: #343a40;
    padding: 1rem 0 0 0;
}

.coupon-section {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
}

.coupon-section h4 {
    color: #343a40;
    margin-bottom: 0.75rem;
}

.coupon-input {
    display: flex;
    gap: 0.5rem;
}

.coupon-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
}

.coupon-input button {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-input button:hover {
    background: #218838;
}

.coupon-message {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.coupon-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.coupon-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.btn-large {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.security-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

.security-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.security-item i {
    color: #28a745;
    margin-right: 0.5rem;
    width: 16px;
}

.empty-cart {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart-content {
    max-width: 400px;
    margin: 0 auto;
}

.empty-cart-icon {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    color: #343a40;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.empty-cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggested-products {
    padding: 3rem 0;
    background: #f8f9fa;
}

.suggested-products h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #343a40;
}

.suggested-products h2 i {
    color: #ffc107;
    margin-right: 0.5rem;
}

/* Responsive Sepet */
@media (max-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 60px 1fr auto;
        gap: 0.75rem;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
    }
    
    .item-controls {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .checkout-actions {
        flex-direction: column;
    }
    
    .empty-cart-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header {
        padding: 2rem 0 1.5rem 0;
        margin-top: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #343a40;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-group label i {
    color: #007bff;
    margin-right: 0.5rem;
    width: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.alert-success {
    background-color: #d1edff;
    color: #0c5460;
    border: 1px solid #b8daff;
}

.alert i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-card h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.contact-card h3 i {
    color: #007bff;
    margin-right: 0.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-detail:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.contact-detail i {
    color: #007bff;
    margin-right: 0.75rem;
    width: 20px;
    font-size: 1.1rem;
}

.contact-detail span {
    color: #495057;
    font-weight: 500;
}

.contact-detail a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover {
    color: #007bff;
    text-decoration: underline;
}

.social-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-contact a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.office-hours {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    padding: 1rem;
}

.office-hours h4 {
    color: #343a40;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.hours-list li:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}

/* Checkbox Stilleri */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    transform: scale(1.2);
}

.checkbox-label a {
    color: #007bff;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: #0056b3;
}

/* Responsive İletişim */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-card {
        padding: 1.5rem;
    }
    
    .social-contact {
        justify-content: center;
    }
}

/* Harita Bölümü Stilleri */
.map-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.map-section h2 {
    text-align: center;
    color: #343a40;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.map-section h2 i {
    color: #007bff;
    margin-right: 0.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.map-note {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 400px;
}

.map-note i {
    color: #007bff;
    margin-right: 0.5rem;
}

/* S.S.S (FAQ) Bölümü Stilleri */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    color: #343a40;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.faq-section h2 i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
    border-color: #007bff;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 12px 0 0 12px;
}

.faq-item h3 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    padding-left: 0.5rem;
    position: relative;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.faq-item p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
    padding-left: 0.5rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-section h2 {
        font-size: 1.7rem;
        margin-bottom: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-note {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-menu,
    .navbar-actions {
        width: 100%;
    }
    
    .navbar-nav {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .search-box input {
        width: 150px;
    }
}

/* Paket Kartları */
.package-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.package-card.popular {
    border-color: #28a745;
    box-shadow: 0 4px 6px rgba(40, 167, 69, 0.2);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.package-icon {
    width: 100%;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.package-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.package-card:hover .package-icon::before {
    left: 100%;
}

.package-icon i {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.package-card:hover .package-icon i {
    transform: scale(1.1);
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.package-duration {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.package-card:hover .package-duration {
    background: rgba(255,255,255,1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* 1 Aylık Paket - Yeşil */
.package-icon-1month {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

/* 3 Aylık Paket - Mavi (En Popüler) */
.package-icon-3month {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

/* 6 Aylık Paket - Turuncu */
.package-icon-6month {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

/* 1 Yıllık Paket - Mor */
.package-icon-1year {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.package-card h3 {
    padding: 1rem 1rem 0.8rem;
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    margin: 0;
}

.package-features {
    padding: 0 1rem 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 13px;
    color: #666;
}

.feature i {
    color: #28a745;
    margin-right: 0.6rem;
    font-size: 11px;
}

.package-pricing {
    padding: 0.8rem 1rem 1rem;
    border-top: 1px solid #eee;
}

.price-option {
    margin-bottom: 1rem;
    text-align: center;
}

.price-option:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.package-pricing .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 1rem;
    padding: 0;
}

.price-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.discount-badge {
    font-size: 0.8rem;
    background: #ff4757;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 0.25rem;
}

.table-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.old-price-table {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.new-price-table {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
}

.vds-option .price {
    color: #28a745;
}

.package-pricing .btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 6px;
    position: relative;
    overflow: hidden;
}

.package-pricing .btn:last-child {
    margin-bottom: 0;
}

.package-pricing .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    opacity: 1 !important;
}

.package-pricing .btn-primary:hover {
    background-color: #0056b3 !important;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4) !important;
}

.package-pricing .btn-success:hover {
    background-color: #1e7e34 !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
}

.package-pricing .btn i {
    margin-right: 5px;
    font-size: 11px;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

.package-info {
    margin-top: 3rem;
    text-align: center;
}

.info-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #007bff;
    max-width: 800px;
    margin: 0 auto;
}

.info-box h3 {
    color: #007bff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box h3 i {
    margin-right: 0.5rem;
}

.info-box p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Responsive için paket kartları */
@media (max-width: 768px) {
    .package-card h3 {
        font-size: 1.2rem;
        padding: 1rem;
    }
    
    .package-features {
        padding: 0 1rem 1rem;
    }
    
    .package-pricing {
        padding: 1rem;
    }
    
    .package-pricing .price {
        font-size: 1.5rem;
    }
    
    .info-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .popular-badge {
        font-size: 11px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }
}

/* Paketler Sayfası Stilleri */
.packages-actions {
    text-align: center;
    margin-bottom: 3rem;
}

.features-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.features-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #343a40;
}

.features-preview h2 i {
    color: #007bff;
    margin-right: 0.5rem;
}

.comparison-preview {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.feature-item i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.feature-item p {
    color: #6c757d;
    line-height: 1.6;
}

.text-primary { color: #007bff !important; }
.text-success { color: #28a745 !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #17a2b8 !important; }
.text-danger { color: #dc3545 !important; }

.cta-section {
    text-align: center;
}

/* Karşılaştırma Sayfası Stilleri */
.comparison-section {
    padding: 3rem 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    min-width: 800px;
    background: white;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.comparison-table th {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
}

.feature-column {
    background: #007bff !important;
    color: white !important;
    text-align: left !important;
    width: 200px;
    position: sticky;
    left: 0;
    z-index: 10;
    font-weight: 700;
    border-right: 2px solid #0056b3;
}

.package-column {
    width: 150px;
    position: relative;
}

.popular-column {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7) !important;
    position: relative;
}

.popular-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(255,234,167,0.1));
    pointer-events: none;
}

.package-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.package-header .package-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.package-header .package-duration {
    font-size: 8px;
    padding: 2px 6px;
}

.package-header h4 {
    color: #343a40;
    font-size: 1rem;
    margin: 0;
}

.package-header .popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    padding: 4px 8px;
    white-space: nowrap;
}

.category-row td {
    background: linear-gradient(135deg, #343a40, #495057) !important;
    color: white !important;
    font-weight: 600;
    text-align: left !important;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-title i {
    font-size: 1.2rem;
}

.feature-name {
    background: #f8f9fa !important;
    text-align: left !important;
    font-weight: 600;
    color: #212529 !important;
    position: sticky;
    left: 0;
    z-index: 5;
    border-right: 2px solid #dee2e6;
    width: 200px;
}

.package-value {
    font-weight: 500;
    color: #343a40;
    vertical-align: middle;
}

.package-value.highlighted {
    background: linear-gradient(135deg, rgba(255,193,7,0.1), rgba(255,234,167,0.1)) !important;
    font-weight: 600;
    position: relative;
}

.package-value i {
    font-size: 1.2rem;
}

.cta-row td {
    padding: 1.5rem 1rem;
    background: #f8f9fa;
    vertical-align: middle;
}

.cta-row .package-value {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    justify-content: center;
    align-items: stretch;
}

.btn-small {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
    display: block;
}

/* Yeni Basit Karşılaştırma Tablosu */
.new-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.new-comparison-table th,
.new-comparison-table td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.new-comparison-table .feature-header {
    background: #007bff;
    color: white;
    text-align: left;
    font-weight: 600;
    width: 200px;
}

.new-comparison-table .package-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    font-weight: 600;
    width: 150px;
}

.new-comparison-table .package-header.popular {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    position: relative;
}

.new-comparison-table .package-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.new-comparison-table .package-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.new-comparison-table .package-1month .package-icon {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.new-comparison-table .package-3month .package-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.new-comparison-table .package-6month .package-icon {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.new-comparison-table .package-1year .package-icon {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.new-comparison-table .package-duration {
    font-size: 10px;
    background: rgba(0,123,255,0.1);
    color: #007bff;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: bold;
}

.new-comparison-table .popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    z-index: 2;
}

.new-comparison-table .feature-name {
    background: #f8f9fa;
    text-align: left;
    font-weight: 600;
    color: #343a40;
    width: 200px;
}

.new-comparison-table .package-cell {
    font-weight: 500;
    color: #343a40;
}

.new-comparison-table .popular-cell {
    background: rgba(255,193,7,0.1);
    font-weight: 600;
}

.new-comparison-table .button-row td {
    padding: 1.5rem 1rem;
    background: #f8f9fa;
}

.new-comparison-table .button-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

.new-comparison-table .btn-table {
    width: 100%;
    max-width: 120px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.new-comparison-table .btn-table:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .new-comparison-table {
        font-size: 0.85rem;
    }
    
    .new-comparison-table th,
    .new-comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .new-comparison-table .package-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .new-comparison-table .btn-table {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #343a40;
}

.recommendations h2 i {
    color: #ffc107;
    margin-right: 0.5rem;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recommendation-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.recommendation-card.popular {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff3cd, #ffffff);
}

.rec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.recommendation-card.popular .rec-icon {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
}

.recommendation-card h4 {
    color: #343a40;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.recommendation-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Karşılaştırma */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .comparison-table-container {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .comparison-table {
        font-size: 0.85rem;
        border-radius: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .feature-column {
        width: 160px;
    }
    
    .package-column {
        width: 120px;
    }
    
    .package-header .package-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .package-header h4 {
        font-size: 0.85rem;
    }
    
    .btn-small {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        width: 100%;
    }

    .cta-row .package-value {
        gap: 0.4rem;
        padding: 0.8rem 0.3rem;
    }    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .recommendation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Karşılaştırma tablosu stilleri */
.comparison-section {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    background: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.comparison-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    white-space: nowrap;
}

.comparison-table th.feature-column {
    text-align: left;
    min-width: 200px;
    background: #2c3e50;
    position: sticky;
    left: 0;
    z-index: 10;
}

.comparison-table td.feature-name {
    background: #34495e;
    color: white;
    font-weight: 600;
    padding: 15px 20px;
    border-right: 2px solid #2c3e50;
    position: sticky;
    left: 0;
    z-index: 5;
}

.comparison-table .package-header {
    text-align: center;
}

.comparison-table .package-icon {
    margin: 0 auto 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.comparison-table .package-icon i {
    font-size: 24px;
    margin-bottom: 5px;
}

.comparison-table .package-duration {
    font-size: 10px;
    font-weight: bold;
}

.comparison-table .popular-badge {
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.comparison-table .popular-column {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ecf0f1;
    border-right: 1px solid #ecf0f1;
    vertical-align: middle;
}

.comparison-table .package-value {
    font-weight: 600;
    color: #2c3e50;
}

.comparison-table .package-value.highlighted {
    background: linear-gradient(135deg, #fff7e6 0%, #ffecd1 100%);
    border-left: 3px solid #f39c12;
    border-right: 3px solid #f39c12;
}

.comparison-table .category-row td {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    font-weight: bold;
    padding: 12px 15px;
    border: none;
}

.comparison-table .category-title i {
    margin-right: 8px;
}

.comparison-table .cta-row td {
    padding: 15px 10px;
    background: #f8f9fa;
}

.comparison-table .cta-row .package-value {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
}

.comparison-table .btn-small {
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: center;
}

.comparison-table .btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.comparison-table .btn-small i {
    font-size: 10px;
    margin-right: 4px;
}

.comparison-table .text-success {
    color: #27ae60 !important;
}

/* Karşılaştırma tablosundaki paket ikonları */
.comparison-table .package-icon.package-icon-1month {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.comparison-table .package-icon.package-icon-3month {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.comparison-table .package-icon.package-icon-6month {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.comparison-table .package-icon.package-icon-1year {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

/* Responsive Karşılaştırma Tablosu */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 12px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
    }
    
    .comparison-table .package-icon {
        width: 40px;
        height: 40px;
    }
    
    .comparison-table .package-icon i {
        font-size: 16px;
    }
    
    .comparison-table .btn-small {
        padding: 6px 8px;
        font-size: 9px;
    }
    
    .comparison-table .cta-row .package-value {
        gap: 4px;
    }
    
    /* Paket kartları mobil */
    .package-pricing .btn {
        padding: 8px 10px;
        font-size: 11px;
        margin-bottom: 4px;
    }
}

@media (max-width: 600px) {
    .comparison-table-container {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table th.feature-column,
    .comparison-table td.feature-name {
        position: static;
    }
    
    .comparison-table .btn-small {
        padding: 5px 6px;
        font-size: 8px;
    }
}

/* Basit Karşılaştırma Tablosu */
.simple-comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
    overflow-y: hidden; /* Dikey scroll'u engelle */
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    /* Scroll bar'ı gizle ama fonksiyonelliği koru */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

.simple-comparison-table::-webkit-scrollbar {
    display: none;  /* Safari and Chrome */
}

.clean-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    table-layout: fixed; /* Sabit layout scroll sorununu önler */
}

.clean-table th,
.clean-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.clean-table th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    position: relative;
}

.feature-col {
    width: 20%;
    text-align: center !important; /* Özellikler yazısını ortala */
    background: #495057 !important;
}

.package-col {
    width: 20%;
    position: relative;
}

.package-col.featured {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%) !important;
    position: relative;
}

.package-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Direkt Paket İconları */
.package-icon-direct {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.basic-icon {
    color: #4facfe;
}

.popular-icon {
    color: #f5576c;
}

.premium-icon {
    color: #4ecdc4;
}

.enterprise-icon {
    color: #ffcc33;
}

.duration-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-badge {
    position: absolute;
    top: 10px; /* Yukarıdan biraz aşağı indir */
    left: 50%;
    transform: translateX(-50%);
    background: #ff4757;
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.clean-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.clean-table tbody tr:hover {
    background-color: #e9ecef;
    /* transform: scale(1.01); - scroll sorunu yaratıyor, kaldırıldı */
    transition: all 0.3s ease;
}

.feature-name {
    text-align: center !important; /* Özellik isimlerini ortala */
    font-weight: 600;
    color: #495057;
    background: #f8f9fa !important;
}

.value {
    font-weight: 500;
    color: #343a40;
}

.featured-value {
    background: rgba(255, 126, 95, 0.1) !important;
    font-weight: 600;
    color: #ff7e5f;
}

/* Feature Icons */
.feature-check {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 900;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(40, 167, 69, 0.3);
}

.feature-cross {
    color: #dc3545;
    font-size: 1.1rem;
    font-weight: 900;
    display: inline-block;
    text-shadow: 0 1px 3px rgba(220, 53, 69, 0.3);
}

/* GÜNCELLEME: vds-note stili eklendi */
.vds-note {
    font-size: 0.75em; /* Daha küçük bir font boyutu */
    color: #888; /* Hafif gri renk */
    display: block; /* Yeni bir satırda başlamasını sağlar */
    margin-top: 5px; /* Üstte biraz boşluk bırakır */
}

.action-row {
    background: #f8f9fa !important;
}

.action-row td {
    padding: 1.5rem 1rem;
    border-top: 2px solid #dee2e6;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.buy-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 120px;
    font-size: 0.9rem;
}

.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.primary-btn:hover {
    /* transform: translateY(-2px); - scroll sorunu yaratıyor, kaldırıldı */
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.success-btn {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    color: white;
}

.success-btn:hover {
    /* transform: translateY(-2px); - scroll sorunu yaratıyor, kaldırıldı */
    box-shadow: 0 8px 20px rgba(86, 171, 47, 0.3);
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .simple-comparison-table {
        margin: 1rem -1rem;
        border-radius: 0;
    }
    
    .clean-table {
        min-width: 600px;
    }
    
    .clean-table th,
    .clean-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .package-icon-direct {
        font-size: 1.5rem;
    }
    
    .buy-buttons {
        gap: 0.3rem;
    }
    
    .buy-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        max-width: 100px;
    }
}

/* About Page Styles */
.about-section {
    padding: 2rem 0;
}

.about-content {
    margin-top: 2rem;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-image {
    text-align: center;
    padding: 2rem;
}

.about-icon {
    font-size: 10rem;
    color: #007bff;
    opacity: 0.1;
}

.features-list {
    margin-top: 2rem;
}

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.mission-section {
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.mission-section h3 {
    margin-bottom: 1rem;
}

.team-section {
    text-align: center;
    margin: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.team-member h4 {
    margin: 1rem 0 0.5rem;
    color: #343a40;
}

.role {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .about-icon {
        font-size: 5rem;
    }
}

/* Versions Page Styles */
.versions-section {
    padding: 2rem 0;
}

.versions-content {
    margin-top: 2rem;
}

.version-timeline {
    position: relative;
    margin: 2rem 0;
}

.version-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #007bff 0%, #6f42c1 100%);
}

.version-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.version-item::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 4px solid #007bff;
    z-index: 1;
}

.version-item.current::before {
    background: #28a745;
    border-color: #28a745;
    box-shadow: 0 0 20px rgba(40, 167, 69, 0.5);
}

.version-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.version-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #343a40;
}

.version-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.version-status.current {
    background: #28a745;
    color: white;
}

.version-status.major {
    background: #007bff;
    color: white;
}

.version-status.legacy {
    background: #6c757d;
    color: white;
}

.version-status:not(.current):not(.major):not(.legacy) {
    background: #17a2b8;
    color: white;
}

.version-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #007bff;
}

.version-item.current .version-content {
    border-left-color: #28a745;
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15);
}

.version-content h3 {
    margin-bottom: 1rem;
    color: #343a40;
}

.version-date {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.version-date i {
    margin-right: 0.5rem;
}

.version-features h4 {
    margin: 1.5rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.version-features ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.version-features li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.upcoming-section {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    text-align: center;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.upcoming-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.upcoming-item:hover {
    transform: translateY(-5px);
}

.upcoming-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.upcoming-item h4 {
    margin-bottom: 1rem;
    color: #343a40;
}

.upcoming-item p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.upcoming-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.upcoming-card:hover {
    transform: translateY(-5px);
}

.upcoming-card h4 {
    margin-bottom: 1rem;
    color: #343a40;
}

.upcoming-card p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.release-date {
    display: inline-block;
    background: #007bff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .version-timeline::before {
        left: 15px;
    }
    
    .version-item {
        padding-left: 50px;
    }
    
    .version-item::before {
        left: 6px;
        width: 18px;
        height: 18px;
    }
    
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 2rem 0;
}

/* GÜNCELLEME: faq.php için doğru include */
.faq-content {
    margin-top: 2rem;
}

.faq-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #6c757d;
}

.category-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.category-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    color: #343a40;
    font-size: 1.1rem;
}

.faq-question i {
    font-size: 1rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #495057;
    line-height: 1.6;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #495057;
}

.contact-cta {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .faq-categories {
        flex-direction: column;
    }
    
    .category-btn {
        justify-content: center;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* ====================
   MODERN FAQ PAGE STYLES
   ==================== */

.faq-hero {
    background: linear-gradient(135deg, #e73c7e 0%, #23a6d5 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-hero i {
    margin-right: 15px;
    color: #ffd700;
}

.faq-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-tab {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-tab:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.faq-tab.active {
    background: linear-gradient(135deg, #e73c7e, #23a6d5);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(231, 60, 126, 0.3);
}

.faq-tab i {
    font-size: 1.1rem;
}

.faq-content {
    display: none;
    max-width: 800px;
    margin: 0 auto;
}

.faq-content.active {
    display: block;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #666;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #e73c7e;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height: 1000px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    color: #555;
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero p {
        font-size: 1.1rem;
    }
    
    .faq-nav {
        gap: 10px;
    }
    
    .faq-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 20px 15px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
}

/* ====================
   VERSIONS PAGE STYLES
   ==================== */

.versions-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.versions-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.versions-hero i {
    margin-right: 15px;
    color: #ffd700;
}

.versions-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.current-version {
    background: white;
    padding: 80px 0;
}

.version-highlight {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.version-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.version-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.version-status {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.version-info h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.version-date {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.version-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #555;
}

.highlight-item i {
    color: #667eea;
    font-size: 1.3rem;
    width: 25px;
}

.version-history {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 0 30px;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #667eea;
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #667eea;
}

.timeline-item:nth-child(odd)::before {
    right: calc(50% - 10px);
}

.timeline-item:nth-child(even)::before {
    left: calc(50% - 10px);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.timeline-content h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content .date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 5px 0;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.upcoming-features {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.upcoming-features h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.upcoming-features .section-desc {
    text-align: center;
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.feature-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: white;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .versions-hero h1 {
        font-size: 2rem;
    }
    
    .versions-hero p {
        font-size: 1.1rem;
    }
    
    .version-highlight {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .version-number {
        font-size: 2.5rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item::before {
        left: 10px !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* ====================
   ABOUT PAGE STYLES
   ==================== */

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-hero i {
    margin-right: 15px;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    margin-bottom: 15px;
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.stat-icon {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Hero Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

/* Tablet responsive */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 600px;
    }
    
    .innovation-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.company-story {
    padding: 100px 0;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-content h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-content .lead {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.story-timeline {
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
}

.timeline-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.timeline-year {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-content {
    margin-left: 20px;
    padding-top: 5px;
}

.timeline-content h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Expanded 2024 Innovation Content */
.timeline-content.expanded {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    margin-left: 20px;
    margin-top: -5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    max-width: 700px;
}

.timeline-content.expanded h4 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content.expanded p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.innovation-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(102, 126, 234, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.feature-item i {
    color: #667eea;
    font-size: 1.1rem;
}

.innovation-text {
    background: rgba(102, 126, 234, 0.05);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    margin-top: 20px !important;
    font-style: italic;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.visual-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.visual-icon i {
    font-size: 1.5rem;
    color: white;
}

.visual-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.visual-card p {
    color: #666;
    line-height: 1.5;
}

.about-features {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card > p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.mission-vision {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.mv-card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mv-card.mission {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.mv-card.vision {
    background: linear-gradient(135deg, #e73c7e, #23a6d5);
    color: white;
}

.mv-header {
    margin-bottom: 25px;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mv-icon i {
    font-size: 2.5rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 700;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.95;
}

.mv-points {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.point {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.team-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.team-avatar i {
    font-size: 2.5rem;
    color: white;
}

.team-info h4 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.role {
    color: #667eea;
    font-weight: 500;
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.team-info p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.about-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #667eea;
    border: 2px solid white;
}



@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0 30px;
        min-height: 40vh;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .hero-stat {
        padding: 25px 15px;
    }
    
    .stat-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .decoration-circle {
        display: none;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Expanded content mobile styles */
    .timeline-content.expanded {
        max-width: none;
        margin-left: 10px;
        padding: 20px 15px;
    }
    
    .innovation-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Partner Logos Slider */
.partners-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
    -webkit-mask: linear-gradient(
        90deg,
        transparent,
        white 20%,
        white 80%,
        transparent
    );
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(250px * 16); /* 8 logos * 2 sets * width */
}

.logo-item {
    flex: 0 0 250px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.logo-item img {
    max-width: 205px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 13)); /* Move by width of 13 logos */
    }
}

/* Mobile responsive for partners */
@media (max-width: 768px) {
    .partners-section {
        padding: 30px 0;
    }
    
    .logo-item {
        flex: 0 0 200px;
        height: 60px;
        padding: 0 20px;
    }
    
    .logo-item img {
        max-width: 160px;
        max-height: 32px;
    }
    
    .slider-track {
        width: calc(200px * 16);
        animation: scroll 25s linear infinite;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 13));
        }
    }
}