
/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: "Instrument Sans", sans-serif;
}

h1 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

h2 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.015em;
}

h3 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h4 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 600;
    letter-spacing: -0.008em;
}

h5 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.005em;
}

h6 {
    font-family: "Instrument Sans", sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.125rem);
    font-weight: 600;
    letter-spacing: -0.003em;
}

p, .body-text {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.6;
}

.btn {
    font-family: "Instrument Sans", sans-serif;
}

/* GDPR Hero Section */
.gdpr-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.gdpr-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-particles .particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle, rgba(1, 132, 250, 0.8) 0%, rgba(139, 92, 246, 0.4) 50%, rgba(6, 214, 160, 0.3) 100%);
    border-radius: 50%;
    left: var(--x);
    top: var(--y);
    animation: heroParticleFloat var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.7;
    box-shadow: 0 0 20px rgba(1, 132, 250, 0.3);
}

@keyframes heroParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.2); opacity: 1; }
}

.gdpr-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

.gdpr-hero-content {
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.gdpr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 2rem;
}

.gdpr-hero-badge .badge {
    background: #0184FA;
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gdpr-hero-badge .badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.gdpr-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gdpr-hero-title .gradient-text {
    background: linear-gradient(135deg, #0184FA 0%, #8b5cf6 50%, #06d6a0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gdpr-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* GDPR Content Section */
.gdpr-content {
    padding: 80px 0;
    background: white;
}

.gdpr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.gdpr-navigation {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.gdpr-navigation h3 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.gdpr-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gdpr-nav-list li {
    margin-bottom: 0.5rem;
}

.gdpr-nav-link {
    display: block;
    color: #64748b;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.gdpr-nav-link:hover {
    background: #0184FA;
    color: white;
    transform: translateX(4px);
}

.gdpr-sections {
    background: white;
}

.gdpr-section {
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.gdpr-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    border-radius: 2px;
}

.section-content {
    color: #374151;
    line-height: 1.7;
}

.section-content p {
    margin-bottom: 1.5rem;
}

/* Data Categories */
.data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.data-category {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.data-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(1, 132, 250, 0.15);
    border-color: #0184FA;
}

.data-category h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.data-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.data-category li {
    color: #64748b;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.data-category li:before {
    content: '•';
    color: #0184FA;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.data-category li:last-child {
    border-bottom: none;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.right-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0184FA, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.right-card:hover::before {
    transform: scaleX(1);
}

.right-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(1, 132, 250, 0.15);
    border-color: #0184FA;
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0184FA, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.right-card h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.right-card p {
    color: #64748b;
    margin: 0;
}

/* Processing Purposes */
.processing-purposes {
    margin-top: 2rem;
}

.purpose-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0184FA;
}

.purpose-item h4 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.purpose-item p {
    color: #374151;
    margin-bottom: 1rem;
}

.legal-basis {
    display: inline-block;
    background: #0184FA;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Retention Policy */
.retention-policy {
    margin-top: 2rem;
}

.retention-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0184FA;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.retention-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(1, 132, 250, 0.15);
}

.retention-item h4 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.retention-item p {
    color: #64748b;
    margin: 0;
}

/* Contact DPO */
.contact-dpo-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dpo-info h4 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 500;
}

.contact-item i {
    color: #0184FA;
    width: 20px;
    text-align: center;
}

.request-types h4 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.request-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.request-types li {
    color: #64748b;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.request-types li:before {
    content: '✓';
    color: #22c55e;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gdpr-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gdpr-navigation {
        position: static;
        order: -1;
    }
    
    .gdpr-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .gdpr-nav-list li {
        margin-bottom: 0;
    }
    
    .gdpr-nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .gdpr-hero {
        padding: 100px 0 60px;
    }
    
    .gdpr-hero-title {
        font-size: 2.5rem;
    }
    
    .gdpr-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .data-categories {
        grid-template-columns: 1fr;
    }
    
    .contact-dpo-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::before {
        left: 0;
        top: -0.5rem;
        bottom: auto;
        width: 2rem;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .gdpr-hero-container {
        padding: 0 1rem;
    }
    
    .gdpr-hero-title {
        font-size: 2rem;
    }
    
    .gdpr-container {
        padding: 0 1rem;
    }
    
    .gdpr-navigation {
        padding: 1.5rem;
    }
    
    .right-card,
    .data-category,
    .purpose-item {
        padding: 1.5rem;
    }
    
    .contact-dpo-card {
        padding: 1.5rem;
    }
}