/* NeyzenCe Website Styles - Compatible with Mobile App Design */

/* CSS Variables - App Theme Colors */
:root {
    --primary-brown: #8B4513;
    --light-brown: #CD853F;
    --background-beige: #F5F3EF;
    --secondary-beige: #F7F3F0;
    --card-beige: #E0DDD5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-brown) 0%, var(--light-brown) 100%);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-beige);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
}

.nav-logo-text {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.8rem;
    color: var(--primary-brown);
    font-weight: 400;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-brown);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-brown);
    transition: var(--transition);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--primary-brown);
    color: var(--primary-brown);
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.lang-btn.active {
    background: var(--primary-brown);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-secondary:hover {
    background: var(--primary-brown);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    color: var(--primary-brown);
    font-family: 'Kaushan Script', cursive;
    font-weight: 400;
    font-size: 1.1em;
    text-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(139, 69, 19, 0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Features Section */
.features {
    background: var(--white);
}

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

.feature-card {
    background: var(--background-beige);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
    border-color: var(--primary-brown);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    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 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* About Section */
.about {
    background: var(--secondary-beige);
}

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

.about-quote {
    background: var(--card-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-brown);
    margin: 2rem 0;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quote-author {
    font-weight: 600;
    color: var(--primary-brown);
    text-align: right;
    margin-bottom: 0.5rem;
}

.quote-translation {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Download Section */
.download {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.download .section-title {
    color: var(--white);
}

.download .section-title::after {
    background: var(--white);
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn img {
    height: 60px;
    transition: var(--transition);
}

.download-btn:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--white);
}

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

.contact-card {
    background: var(--background-beige);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

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

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
}

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

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

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.footer-logo-text {
    font-family: 'Kaushan Script', cursive;
    font-size: 1.8rem;
    color: var(--light-brown);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 80px;
    background: var(--white);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: var(--primary-brown);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--background-beige);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.legal-signature {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: var(--transition);
        box-shadow: 0 2px 10px var(--shadow);
    }

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

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 60px 0;
    }

    /* Enhanced mobile navigation */
    .nav-container {
        padding: 0 1rem;
        height: 60px;
    }

    .nav-logo-img {
        width: 35px;
        height: 35px;
    }

    .nav-logo-text {
        font-size: 1.5rem;
    }

    /* Hero section mobile improvements */
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-icon {
        max-width: 200px;
    }

    /* Features section mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }

    /* About section mobile */
    .about-quote {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .quote-text {
        font-size: 1rem;
    }

    /* Contact section mobile */
    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }

    .contact-icon i {
        font-size: 1.2rem;
    }

    /* Download section mobile */
    .download-btn img {
        height: 50px;
    }

    /* Typography adjustments for mobile */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .download-btn img {
        height: 45px;
    }

    /* Extra small screen adjustments */
    .nav-container {
        padding: 0 0.8rem;
        height: 55px;
    }

    .nav-logo-text {
        font-size: 1.3rem;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-icon {
        max-width: 180px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .about-quote {
        padding: 1rem;
    }

    .quote-text {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 1.2rem;
    }

    .footer-content {
        gap: 0.8rem;
    }

    .footer-links {
        gap: 0.8rem;
    }
}

/* Additional responsive enhancements */
@media (max-width: 360px) {
    .container {
        padding: 0 0.8rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 1.2rem 0.8rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

/* Landscape mobile orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0 40px;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .nav-container {
        height: 50px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        padding: 1rem 2rem;
    }

    .nav-link {
        padding: 0.8rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .lang-btn {
        min-height: 40px;
        min-width: 40px;
    }

    .contact-card a {
        min-height: 44px;
        display: inline-block;
        padding: 0.5rem 0;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-card,
    .contact-card,
    .btn {
        transition: var(--transition);
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-brown);
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Legal Notice Section Styles */
.legal-notice {
    background: var(--light-cream);
    padding: 4rem 0;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.legal-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    text-align: left;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: var(--transition);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

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

.legal-card h3 a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: var(--transition);
}

.legal-card h3 a:hover {
    color: var(--dark-brown);
}

.legal-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.legal-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--dark-brown);
    transform: translateX(5px);
}

/* Enhanced Footer Navigation */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-section h4 {
    color: var(--light-brown);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-brown);
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 4px;
    font-weight: 400;
    position: relative;
}

.footer-section a:hover {
    color: var(--light-brown);
    padding-left: 10px;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-brown);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-legal-links a:hover {
    color: var(--light-brown);
    border-color: var(--primary-brown);
    background: rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
}

/* FAQ and Educational Content Styles */
.terms-faq, .privacy-faq {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

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

.faq-item {
    background: var(--light-cream);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-brown);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
}

.faq-item h3 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Educational Content Styles */
.legal-education {
    background: var(--light-cream);
    padding: 4rem 0;
}

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

.education-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: var(--transition);
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.15);
}

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

.education-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.education-card ul {
    color: var(--text-gray);
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.education-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* GDPR Rights Information Styles */
.gdpr-info {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.gdpr-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--light-cream);
    border-radius: 12px;
    border-left: 4px solid var(--primary-brown);
}

.gdpr-intro p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.rights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.rights-row {
    background: var(--light-cream);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: var(--transition);
}

.rights-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.12);
}

.right-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
}

.right-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    background: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

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

.right-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.right-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.detail-badge {
    background: var(--primary-brown);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.gdpr-contact {
    margin-top: 4rem;
    text-align: center;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-brown), #a0522d);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.contact-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-card ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.contact-card ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-card a {
    color: #f4e4bc;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: white;
    text-decoration: underline;
}

.btn-secondary {
    background: var(--primary-brown);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

/* Security Education Styles */
.security-education {
    background: var(--light-cream);
    padding: 4rem 0;
}

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

.security-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.08);
    transition: var(--transition);
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.security-item h3 {
    color: var(--primary-brown);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-item p {
    color: var(--text-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.security-contact {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--primary-brown);
}

.security-contact h3 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.security-contact p {
    color: var(--text-gray);
    line-height: 1.6;
}

.security-contact a {
    color: var(--primary-brown);
    font-weight: 600;
}

/* Mobile responsiveness for legal section */
@media (max-width: 768px) {
    .legal-notice {
        padding: 2.5rem 0;
    }

    .legal-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .legal-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 2rem;
    }

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

    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal-links {
        justify-content: center;
        gap: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .education-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .education-card {
        padding: 2rem;
    }

    .gdpr-info {
        padding: 3rem 0;
    }

    .gdpr-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .right-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .right-icon {
        margin: 0 auto;
    }

    .detail-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .contact-card {
        padding: 2rem;
    }

    .security-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .security-features {
        grid-template-columns: 1fr;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .footer-legal-links a {
        width: 120px;
        text-align: center;
    }

    .right-info {
        padding: 1.5rem;
    }

    .right-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .right-content h3 {
        font-size: 1.1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.3rem;
    }
}

/* Ney Learning Section - Keyword Rich Content Styles */
.ney-learning {
    background: linear-gradient(135deg, var(--light-cream) 0%, #f9f7f4 100%);
    padding: 5rem 0;
    border-top: 3px solid var(--primary-brown);
    position: relative;
}

.ney-learning::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-brown) 50%, transparent 100%);
}

.ney-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ney-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ney-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-brown), #d2b48c);
    transition: all 0.6s ease;
}

.ney-card:hover::before {
    left: 0;
}

.ney-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-brown);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.ney-icon {
    background: linear-gradient(135deg, var(--primary-brown), #8B4513);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.ney-card h3 {
    color: var(--primary-brown);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.ney-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Master Section Styles */
.ney-master-section {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(139, 69, 19, 0.1);
    text-align: center;
}

.master-content h3 {
    color: var(--primary-brown);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.master-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-brown), #d2b48c);
}

.master-content p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.master-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-tag {
    background: var(--primary-brown);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.feature-tag:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Mobile Responsiveness for Ney Learning Section */
@media (max-width: 768px) {
    .ney-learning {
        padding: 3rem 0;
    }

    .ney-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .ney-card {
        padding: 2rem;
    }

    .ney-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .ney-card h3 {
        font-size: 1.2rem;
    }

    .ney-master-section {
        padding: 2rem;
        margin-top: 3rem;
    }

    .master-content h3 {
        font-size: 1.6rem;
    }

    .master-content p {
        font-size: 1rem;
    }

    .master-features {
        gap: 0.8rem;
    }

    .feature-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .ney-card {
        padding: 1.5rem;
    }

    .master-content h3 {
        font-size: 1.4rem;
    }

    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}