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

:root {
    --primary: #2d1b4e;
    --secondary: #4a2c6f;
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --text: #e5e7eb;
    --text-dark: #1f2937;
    --bg-dark: #1a0f2e;
    --bg-light: #f9fafb;
    --border: #4b5563;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

header {
    background: var(--primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s;
}

nav a:hover {
    background: var(--secondary);
    color: var(--accent-light);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    padding: 8rem 0 6rem;
    color: var(--text);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--accent-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-dark);
}

.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--secondary);
    border-radius: 10px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.podcast-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.podcast-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.podcast-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.podcast-content {
    padding: 1.5rem;
}

.podcast-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.podcast-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--border);
    margin-bottom: 1rem;
}

.podcast-desc {
    color: #4b5563;
    line-height: 1.6;
}

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

.feature-item {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

footer {
    background: var(--primary);
    color: var(--text);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

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

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

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--text);
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

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

.cookie-banner .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.cookie-settings {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--secondary);
}

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.simple-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.simple-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.simple-page h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--secondary);
}

.simple-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.simple-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.simple-page li {
    margin-bottom: 0.5rem;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    color: var(--text);
    text-align: center;
    padding: 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-text {
    padding-right: 2rem;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
}

.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: -3rem auto 0;
    position: relative;
    z-index: 10;
}

.quick-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.2);
}

.quick-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.quick-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.quick-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.featured-section {
    background: var(--bg-light);
}

.podcasts-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.podcast-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.podcast-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.15);
}

.preview-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.2rem;
}

.asymmetric-split {
    display: grid;
    grid-template-columns: 70fr 30fr;
    gap: 3rem;
    align-items: center;
}

.asymmetric-split.reverse {
    grid-template-columns: 30fr 70fr;
}

.content-visual {
    background: var(--secondary);
    padding: 3rem;
    border-radius: 15px;
    color: var(--text);
}

.content-visual h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.visual-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s;
    color: black;
}

.topic-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.topic-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.topic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        padding-right: 0;
    }

    .quick-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .podcasts-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .asymmetric-split,
    .asymmetric-split.reverse {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }

    nav ul.active {
        left: 0;
    }

    nav li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .quick-cards {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .podcasts-preview {
        grid-template-columns: 1fr;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-banner .btn {
        flex: 1;
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
    }
}

/* ABOUT US PAGE STYLES */

.about-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    padding: 6rem 0 4rem;
    color: var(--text);
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}

.about-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

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

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.value-card p {
    color: var(--text);
    opacity: 0.85;
    line-height: 1.6;
}

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.team-intro p {
    font-size: 1.1rem;
    color: #6b7280;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.member-role {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: #6b7280;
    line-height: 1.6;
    margin-top: 1rem;
}

.process-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-visual img {
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-light);
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    min-width: 60px;
}

.step-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-text p {
    color: var(--text);
    opacity: 0.85;
    line-height: 1.6;
}

/* CONTACTS PAGE STYLES */

.contact-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    padding: 6rem 0 4rem;
    color: var(--text);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.contact-main {
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: white;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.contact-info-box {
    background: var(--primary);
    color: var(--text);
    padding: 2.5rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-light);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--secondary);
}

.info-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent);
    min-width: 40px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-light);
}

.info-item p {
    margin: 0;
    opacity: 0.9;
}

.info-note {
    display: block;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.3rem;
}

.response-time {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.response-time i {
    font-size: 1.5rem;
    color: var(--accent);
    min-width: 30px;
}

.response-time p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin: 0;
}

/* RESPONSIVE STYLES FOR NEW PAGES */

@media (max-width: 968px) {
    .about-split {
        grid-template-columns: 1fr;
    }

    .process-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

    .about-hero p,
    .contact-hero p {
        font-size: 1rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .contact-info-box {
        padding: 1.5rem;
    }
}

.service-page {
    padding: 4rem 0;
    min-height: 70vh;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h1 {
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
}

.content-section {
    margin-bottom: 3.5rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-weight: 600;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
    color: #374151;
    font-size: 1.05rem;
}

.content-section a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
}

.content-section a:hover {
    color: var(--accent-light);
}

.cookie-type {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent);
}

.cookie-type h3 {
    margin-top: 0;
}

.data-category {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.data-category h3 {
    margin-top: 0;
}

.purpose-item {
    background: #f9fafb;
    padding: 1.8rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary);
}

.purpose-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.access-item {
    background: #f9fafb;
    padding: 1.8rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.access-item h3 {
    margin-top: 0;
}

.rights-list {
    list-style: none;
    padding: 0;
}

.rights-list li {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    font-size: 1.05rem;
    line-height: 1.7;
}

.rights-list li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.disclaimer-highlight {
    background: #fef3c7;
    border-left: 5px solid var(--accent);
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}

.disclaimer-highlight h3 {
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.disclaimer-highlight h3 i {
    color: var(--accent);
    font-size: 1.6rem;
}

.disclaimer-highlight p {
    color: #78716c;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.disclaimer-highlight p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #57534e;
}

@media (max-width: 768px) {
    .service-page {
        padding: 2rem 0;
    }

    .service-content h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }

    .cookie-type,
    .data-category,
    .purpose-item,
    .access-item {
        padding: 1.5rem;
    }

    .disclaimer-highlight {
        padding: 1.5rem;
    }

    .disclaimer-highlight h3 {
        font-size: 1.2rem;
    }
}