/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-accent: #eff6ff;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --error-color: #ef4444;
    --max-width: 1200px;
    --spacing-unit: 1rem;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografi - Reklam odaklı, okunabilir */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.25rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover, a:focus {
    color: var(--primary-dark);
    outline: none;
}

/* Container ve Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header - Temiz ve modern, tam adaptif */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo:hover, .logo:focus {
    color: var(--primary-color);
    outline: none;
}

/* Navigation - Temiz, border yok */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.9375rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after, nav a:focus::after {
    width: 100%;
}

nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.menu-toggle:hover, .menu-toggle:focus {
    color: var(--primary-color);
    outline: none;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* Hero Section - Reklam odaklı */
.hero-intro {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-intro h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    font-weight: 400;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
}

.intro-text h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: center;
}

.intro-text p {
    font-size: 1.1875rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Methods Section - Reklam kartları */
.methods-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.methods-section h2 {
    font-size: 2.75rem;
    margin-bottom: 4rem;
    text-align: center;
}

.method-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: 20px;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.method-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.method-card:hover::before {
    transform: scaleY(1);
}

.method-primary::before {
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
}

.method-secondary::before {
    background: linear-gradient(180deg, #8b5cf6, #a78bfa);
}

.method-accent::before {
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
}

.method-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--bg-secondary);
    line-height: 1;
    min-width: 100px;
    text-align: center;
    font-family: 'Georgia', serif;
    transition: color 0.3s ease;
}

.method-card:hover .method-number {
    color: var(--primary-color);
}

.method-content {
    flex: 1;
}

.method-content h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    margin-top: 0;
    color: var(--text-primary);
}

.method-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.method-tip {
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.method-tip strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.btn-link::after {
    content: '→';
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-link:hover::after {
    transform: translateX(4px);
}

/* Insight Section */
.insight-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: 5rem 0;
    border-radius: 24px;
}

.insight-box {
    padding: 4rem 3rem;
}

.insight-box h3 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.insight-item {
    padding: 2rem;
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.insight-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.insight-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.insight-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Practical Section */
.practical-section {
    padding: 5rem 0;
}

.practical-section h2 {
    font-size: 2.75rem;
    margin-bottom: 4rem;
    text-align: center;
}

.practice-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.practice-item {
    display: flex;
    gap: 2.5rem;
    padding: 2.5rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.practice-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(8px);
}

.practice-day {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
    height: fit-content;
    min-width: 120px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.practice-content {
    flex: 1;
}

.practice-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: var(--text-primary);
}

.practice-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
    margin-top: 5rem;
}

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

.resource-card {
    padding: 3rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.resource-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.resource-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    margin-top: 0;
    color: var(--text-primary);
}

.resource-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Cards - Genel stil, border yok */
.card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

/* Accent Blocks - Border yok, gölge var */
.notlar-block {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: var(--shadow-md);
}

.notlar-block h4 {
    color: #92400e;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.notlar-block p, .notlar-block ul {
    color: #78350f;
}

.notlar-block ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.notlar-block li {
    margin-bottom: 0.75rem;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 2.5rem 0;
}

/* Forms - Modern, border yok, merkezde */
form {
    max-width: 650px;
    margin: 2.5rem auto;
    padding: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 2rem;
}

form label {
    display: block;
    margin-bottom: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 16px;
    font-size: 1.0625rem;
    font-family: inherit;
    background: var(--bg-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
}

form input:focus, form textarea:focus {
    outline: none;
    background: var(--bg-primary);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.15), 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

form input::placeholder,
form textarea::placeholder {
    color: var(--text-light);
}

form textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: var(--bg-accent);
    border-radius: 12px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.375rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: var(--shadow-md);
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--text-secondary), #6b7280);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #e5e7eb;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.125rem;
}

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

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

.footer-section a {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

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

.cookie-banner-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--success-color), #34d399);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    display: none;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.toast.active {
    display: block;
}

.toast.error {
    background: linear-gradient(135deg, var(--error-color), #f87171);
}

@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Site Haritası */
.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
}

.sitemap-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.sitemap-list a {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Image Styles */
.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin: 2rem auto;
    display: block;
}

.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.image-text-block.reverse {
    direction: rtl;
}

.image-text-block.reverse > * {
    direction: ltr;
}

.image-text-block img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.image-text-block .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .hero-intro h1 {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .header-content {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }
    
    nav.active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1.5rem 2rem;
        gap: 0;
        align-items: flex-start;
        margin-top: 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 1.25rem 0;
        width: 100%;
        font-size: 1.0625rem;
    }
    
    nav a::after {
        display: none;
    }
    
    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    form {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-banner-buttons {
        width: 100%;
    }
    
    .cookie-banner-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .toast {
        right: 1rem;
        left: 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        flex-direction: column;
        padding: 2rem;
    }
    
    .method-number {
        font-size: 4rem;
        min-width: auto;
    }
    
    .practice-item {
        flex-direction: column;
        padding: 2rem;
    }
    
    .practice-day {
        width: 100%;
    }
    
    .insight-grid {
        grid-template-columns: 1fr;
    }
    
    .image-text-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
    
    main {
        padding: 0;
    }
    
    .card {
        padding: 2rem;
    }
    
    .hero-intro {
        padding: 4rem 0 3rem;
    }
}

/* Page Headers - Büyük margin */
.page-header {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

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

.page-header h2 {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.page-header h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

/* İletişim, Politika sayfaları için özel spacing */
.iletisim-page h1,
.gizlilik-page h1,
.cerez-page h1,
.kullanim-page h1 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.iletisim-page h2,
.gizlilik-page h2,
.cerez-page h2,
.kullanim-page h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
}

.iletisim-page section,
.gizlilik-page section,
.cerez-page section,
.kullanim-page section {
    margin-bottom: 3rem;
}

/* Policy Page Styles */
.gizlilik-page {
    padding: 3rem 0 5rem;
}

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

.policy-card {
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.policy-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.policy-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 1.75rem 2rem;
    color: white;
}

.policy-card-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.policy-card-body {
    padding: 2rem;
    flex: 1;
}

.policy-card-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding: 0.75rem 0 0.75rem 1.75rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.policy-note {
    background: var(--bg-accent);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-left: 3px solid var(--primary-color);
}

.policy-answer {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.8;
}

.policy-card-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.policy-card-highlight .policy-card-header {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.policy-card-rights {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.policy-card-rights .policy-card-header {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.policy-rights-list li::before {
    color: #92400e;
}

.policy-card-security {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.policy-card-security .policy-card-header {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.policy-form-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid var(--border-color);
}

.policy-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.policy-form-wrapper h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .policy-card-header {
        padding: 1.5rem 1.5rem;
    }
    
    .policy-card-header h2 {
        font-size: 1.25rem;
    }
    
    .policy-card-body {
        padding: 1.5rem;
    }
    
    .policy-form-wrapper h2 {
        font-size: 1.875rem;
    }
}

/* Print Styles */
@media print {
    header, footer, .cookie-banner {
        display: none;
    }
    
    main {
        padding: 0;
    }
}

/* Accessibility - Focus states */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
