:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #0ea5e9;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* News Banner */
.news-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.news-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.news-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.news-content i {
    font-size: 16px;
    animation: ring 2s infinite;
}

.news-link {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 8px;
    transition: opacity 0.3s ease;
}

.news-link:hover {
    opacity: 0.8;
}

.news-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    position: absolute;
    right: 0;
}

.news-close:hover {
    background-color: rgba(255,255,255,0.1);
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70% { transform: rotate(-10deg); }
    20%, 40%, 60% { transform: rotate(10deg); }
    80% { transform: rotate(-5deg); }
    90% { transform: rotate(5deg); }
}

@media (max-width: 768px) {
    .news-banner {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .news-content span {
        display: none;
    }
    
    .news-content::after {
        content: "Yeni güncelleme! Uygulamayı deneyin";
    }
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

/* Logo Styling */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.header-logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
    object-fit: contain;
    vertical-align: middle;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    display: block;
}

.nav-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    line-height: 1.2;
    vertical-align: middle;
}

.nav-brand .logo-text:hover {
    color: #1d4ed8;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
    vertical-align: middle;
}

.footer-logo h3 {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.2;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .btn-primary {
    color: var(--white) !important;
}

.nav-menu .btn-primary:hover {
    color: var(--white) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0f2fe 100%);
    padding: 5rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    background: var(--primary-color);
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.hero-visual i {
    font-size: 120px;
    color: var(--white);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

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

.feature-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

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

.feature-icon {
    background-color: var(--primary-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background-color: var(--bg-light);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.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;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section i {
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

/* About Page Specific */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* How It Works Page */
.process-steps {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Pricing Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    perspective: 1000px;
}

/* Individual Package Design */
.individual-package {
    margin: 2rem 0 4rem 0;
}

.individual-card {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.individual-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.individual-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 500;
}

.individual-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.individual-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.individual-features li i {
    margin-right: 8px;
    color: white;
}

.individual-pricing {
    text-align: center;
}

.individual-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.individual-price span {
    font-size: 1rem;
    opacity: 0.8;
}

/* Corporate Packages Design */
.corporate-packages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.corporate-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
}

.corporate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.corporate-card.featured {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: scale(1.02);
}

.corporate-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.corporate-card.special {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.corporate-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.corporate-card.featured h3,
.corporate-card.special h3 {
    color: white;
}

.corporate-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.corporate-card.featured .corporate-price,
.corporate-card.special .corporate-price {
    color: white;
}

.corporate-price span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.corporate-features {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    text-align: left;
}

.corporate-features li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
}

.corporate-features li i {
    margin-right: 6px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.corporate-card.featured .corporate-features li i,
.corporate-card.special .corporate-features li i {
    color: white;
}

.btn-corporate {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-corporate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.corporate-card.featured .btn-corporate,
.corporate-card.special .btn-corporate {
    background: white;
    color: var(--primary-color);
}

@media (max-width: 1200px) {
    .corporate-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .individual-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .corporate-packages {
        grid-template-columns: 1fr;
    }
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transform-style: preserve-3d;
}

.pricing-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05) translateY(-5px);
    border: 2px solid var(--primary-light);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
}

.pricing-card.featured .pricing-price,
.pricing-card.featured h3,
.pricing-card.featured ul li {
    color: var(--white);
}

.pricing-card.featured::before {
    content: "EN POPÜLER";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured h3,
.pricing-card.special h3 {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card.featured .pricing-price,
.pricing-card.special .pricing-price {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.pricing-features li:hover {
    transform: translateX(5px);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--white);
}

.pricing-card.featured .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.pricing-card.featured .btn-primary:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.pricing-card.special {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border: 2px solid var(--primary-light);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.2);
    transform: translateY(-3px);
}

.pricing-card.special:hover {
    transform: translateY(-13px) rotateX(5deg);
    box-shadow: 0 22px 45px rgba(14, 165, 233, 0.25);
}

.pricing-card.special .pricing-price,
.pricing-card.special h3,
.pricing-card.special ul li {
    color: var(--white);
}

.pricing-card.special::before {
    content: "ÖZEL PAKET";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pricing-card.special .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.pricing-card.special .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    padding: 8px 16px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.pricing-card.featured .pricing-note {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.special .pricing-note {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li i {
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li i,
.pricing-card.special .pricing-features li i {
    color: var(--white);
}

.pricing-features li::before {
    display: none;
}

.package-section-title {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin: 4rem 0 2rem 0;
    position: relative;
}

.package-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.pricing-note-section {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.pricing-note-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pricing-note-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s;
}

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

.contact-icon {
    background-color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    background-color: var(--primary-dark);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card a:not(.btn-secondary) {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:not(.btn-secondary):hover {
    color: var(--primary-dark);
}

.contact-card strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.mt-2 {
    margin-top: 1rem;
}

.contact-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    color: var(--white);
}

.banner-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
}

.contact-banner .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-banner .btn-primary:hover {
    background-color: var(--bg-light);
}

/* FAQ Section */
.faq-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Privacy Policy Styles */
.privacy-policy-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.update-date {
    color: #666;
    font-size: 1.1rem;
}

.privacy-content {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #2563eb;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.privacy-section h3 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.privacy-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.privacy-section ul li strong {
    color: #333;
}

.info-box {
    background-color: #f0f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin: 20px 0;
}

.info-box p {
    margin: 5px 0;
    color: #333;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-brand .logo {
        height: 35px;
    }
    
    .header-logo {
        height: 32px;
        margin-right: 8px;
    }
    
    .nav-brand .logo-text {
        font-size: 1.25rem;
    }
    
    .footer-logo-img {
        height: 28px;
        margin-right: 8px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-visual {
        width: 200px;
        height: 200px;
    }

    .hero-visual i {
        font-size: 80px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .payment-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Payment Methods Section */
.payment-methods {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.payment-methods h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.payment-methods p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-width: 120px;
}

.payment-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(37, 99, 235, 0.3);
}

.payment-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.payment-logo.iyzico i {
    color: #00c851;
}

.payment-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.payment-security i {
    color: #00c851;
    font-size: 1rem;
}

/* Footer Payment Section */
.footer-payment {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
}

.footer-payment h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-methods-img {
    max-width: 100%;
    height: auto;
    max-height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.payment-methods-img:hover {
    opacity: 1;
}

/* Mobile app badges */
.mobile-apps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.app-badge {
    height: 40px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.app-badge[alt="Google Play"] {
    height: 58px;
}

.app-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}