/* Legal Pages Styles */

/* Base Typography */
body {
    font-family: 'DM Sans', sans-serif;
}

/* Ensure all text elements use DM Sans */
p, a, span, li, td, th, div, button, input, textarea, select {
    font-family: 'DM Sans', sans-serif;
}

/* Titles keep their font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Legal Navigation */
.legal-nav {
    background: white;
    border-bottom: 1px solid #E5E7EB;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6B7280;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.back-link:hover {
    background: #F3F4F6;
    color: #0EA5E9;
}

/* Legal Hero Section */
.legal-hero {
    position: relative;
    margin-top: 70px; /* Minimal space for fixed navbar */
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: white;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.legal-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
}

.legal-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.legal-subtitle {
    font-size: 1.25rem;
    font-family: 'DM Sans', sans-serif;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Ensure white text in hero sections */
.legal-hero .legal-subtitle {
    color: rgba(255, 255, 255, 0.95);
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
    font-family: 'DM Sans', sans-serif;
}

.meta-item .material-icons {
    font-size: 18px;
}

/* Table of Contents */
.toc-section {
    padding: 3rem 0 2rem;
    background: #F9FAFB;
}

.toc-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.toc-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.toc-list a {
    color: #6B7280;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    transition: color 0.3s;
    padding: 4px 0;
    display: block;
}

.toc-list a:hover,
.toc-list a.active {
    color: #0EA5E9;
}

/* Content Layout */
.legal-content {
    padding: 4rem 0 6rem;
    background: white;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main {
    max-width: 800px;
}

.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 100px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1F2937;
    font-weight: 600;
}

.content-section h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #374151;
    font-weight: 600;
}

.content-section p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.content-section li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 0.75rem;
}

/* Info Cards */
.info-card {
    background: #F3F4F6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0 1.5rem;
}

/* Beautiful Info Cards */
.info-card-beautiful {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.info-card-beautiful::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0EA5E9, #0284C7);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon .material-icons {
    color: white;
    font-size: 24px;
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

.info-list-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #0EA5E9;
}

.info-list-item:last-child {
    margin-bottom: 0;
}

.info-list-icon {
    width: 36px;
    height: 36px;
    background: #EBF8FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-list-icon .material-icons {
    color: #0EA5E9;
    font-size: 20px;
}

.info-list-content {
    flex: 1;
}

.info-list-title {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
    font-size: 1.0625rem;
}

.info-list-description {
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.info-card ul {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

.info-card ul li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.info-card ul li:last-child {
    margin-bottom: 0;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.usage-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s;
}

.usage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.usage-card .material-icons {
    font-size: 40px;
    color: #0EA5E9;
    margin-bottom: 1rem;
}

.usage-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.usage-card p {
    font-size: 0.9375rem;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* Sharing List */
.sharing-list {
    margin: 2rem 0;
}

.sharing-item {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #E5E7EB;
}

.sharing-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.sharing-item .material-icons {
    color: #0EA5E9;
}

.sharing-item p {
    margin: 0;
    margin-left: 36px;
    font-family: 'DM Sans', sans-serif;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .security-features {
        grid-template-columns: 1fr;
    }
}

.security-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #F0FDFA;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #14B8A6;
}

.security-item .material-icons {
    font-size: 48px;
    color: #14B8A6;
    margin-bottom: 1rem;
}

.security-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1F2937;
    font-weight: 600;
}

.security-item p {
    margin: 0;
    font-size: 0.9375rem;
    font-family: 'DM Sans', sans-serif;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.right-card {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.right-card:hover {
    border-color: #0EA5E9;
}

.right-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.right-card p {
    margin: 0;
    font-size: 0.9375rem;
    font-family: 'DM Sans', sans-serif;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.cookie-item {
    background: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.cookie-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #92400E;
}

.cookie-item p {
    margin: 0;
    font-size: 0.875rem;
    color: #B45309;
    font-family: 'DM Sans', sans-serif;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-card .material-icons {
    font-size: 24px;
    color: #0EA5E9;
    flex-shrink: 0;
}

.contact-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #1F2937;
}

.contact-card p {
    margin: 0;
    font-size: 0.9375rem;
    font-family: 'DM Sans', sans-serif;
}

.contact-card a {
    color: #0EA5E9;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Sidebar */
.content-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.sidebar-card ul {
    list-style: none;
    margin: 0;
}

.sidebar-card li {
    margin-bottom: 0.75rem;
}

.sidebar-card a {
    color: #6B7280;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.sidebar-card a:hover {
    color: #0EA5E9;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0EA5E9;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.sidebar-cta:hover {
    background: #0284C7;
    transform: translateY(-1px);
}

.trust-card {
    background: #F0FDFA;
    border: 1px solid #14B8A6;
    text-align: center;
}

.trust-card .material-icons {
    font-size: 48px;
    color: #14B8A6;
    margin-bottom: 1rem;
}

/* Important Notice Section */
.notice-warning {
    background: #FEF3C7;
    border: 2px solid #FCD34D;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.notice-warning h3 {
    color: #92400E;
    margin-bottom: 0.75rem;
}

.notice-warning p {
    color: #B45309;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
}

/* Key Points Section */
.key-points-container {
    background: #FAFAFA;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.key-points-header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.key-points-header h3 {
    color: #374151;
    font-weight: 600;
    margin: 0;
}

.key-points-header .material-icons {
    font-size: 24px;
    color: #6B7280;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.key-point-card {
    background: white;
    border: 1px solid #D1D5DB;
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.key-point-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.key-point-card .material-icons {
    font-size: 32px;
    color: #0EA5E9;
    margin-bottom: 1rem;
    display: block;
}

.key-point-card h4 {
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.key-point-card p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}

/* Two Column Grid Layout */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.two-column-item h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.two-column-item h4 .material-icons {
    color: #0EA5E9;
}

.two-column-item p {
    margin-left: 0 !important;
    padding-left: 0;
    text-align: left;
}

/* Prohibited Activities Section */
.prohibited-container {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #FCA5A5;
}

.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.prohibited-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
    transition: all 0.3s;
}

.prohibited-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.prohibited-card .material-icons {
    color: #DC2626;
    font-size: 48px;
    margin-bottom: 1rem;
}

.prohibited-card h5 {
    margin: 0 0 0.75rem;
    color: #991B1B;
    font-weight: 600;
    font-size: 1.125rem;
}

.prohibited-card p {
    margin: 0;
    color: #7F1D1D;
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}

/* Free Trial Section */
.trial-container {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid #86EFAC;
    position: relative;
    overflow: hidden;
}

.trial-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trial-decoration-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.trial-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.trial-header .material-icons {
    font-size: 56px;
    color: #22C55E;
    margin-bottom: 1rem;
    display: block;
}

.trial-header h3 {
    font-size: 1.875rem;
    color: #166534;
    margin: 0;
    font-weight: 700;
}

.trial-header p {
    color: #16A34A;
    margin: 0.5rem 0 0;
    font-size: 1.125rem;
    font-family: 'DM Sans', sans-serif;
}

.trial-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    position: relative;
}

.trial-feature {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s;
    cursor: default;
}

.trial-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.15);
}

.trial-feature .material-icons {
    color: #22C55E;
    font-size: 28px;
    flex-shrink: 0;
}

.trial-feature h4 {
    margin: 0 0 0.25rem;
    color: #166534;
    font-size: 1.125rem;
    font-weight: 600;
}

.trial-feature p {
    margin: 0;
    color: #15803D;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}

.trial-cta-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px dashed #86EFAC;
}

.trial-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #22C55E;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.trial-cta-button:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.trial-cta-text {
    margin: 0.75rem 0 0;
    color: #16A34A;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
}

/* Liability Exclusions Section */
.liability-container {
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.liability-decoration-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(107, 114, 128, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.liability-decoration-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(107, 114, 128, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.liability-list {
    display: grid;
    gap: 1rem;
    position: relative;
}

.liability-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.liability-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.liability-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6B7280, #4B5563);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.liability-icon .material-icons {
    color: white;
    font-size: 24px;
}

.liability-item p {
    margin: 0;
    color: #374151;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
    font-family: 'DM Sans', sans-serif;
}

.liability-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #D1D5DB;
}

.liability-footer .material-icons {
    color: #6B7280;
    font-size: 32px;
}

.liability-footer p {
    margin: 0.5rem 0 0;
    color: #4B5563;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
}

/* Disclaimer Card */
.disclaimer-card {
    background: #E0E7FF;
    border: 1px solid #6366F1;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Summary Sidebar Card */
.sidebar-summary {
    background: #DBEAFE;
    border: 1px solid #3B82F6;
}

.sidebar-summary .material-icons {
    color: #3B82F6;
    font-size: 32px;
}

.sidebar-summary h4 {
    color: #1E40AF;
}

.sidebar-summary p {
    color: #1E40AF;
    font-size: 0.875rem;
    font-family: 'DM Sans', sans-serif;
}

/* Fix sidebar CTA text visibility */
.sidebar-cta span {
    color: white !important;
    font-weight: 600 !important;
}

.sidebar-cta .material-icons {
    color: white !important;
    font-size: 20px !important;
}

.sidebar-cta:hover {
    color: white !important;
}

.sidebar-cta:hover span {
    color: white !important;
}

.sidebar-cta:hover .material-icons {
    color: white !important;
}

/* Security Page Specific Styles */
.security-hero {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
}

.security-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.security-stats-section {
    padding: 0 0 3rem;
}

.security-stats-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.security-stat-text {
    margin: 0;
    color: #0D9488;
    font-family: 'DM Sans', sans-serif;
}

.security-process-title {
    text-align: center;
    color: #0D9488;
    margin-bottom: 2rem;
}

.security-promise-card {
    background: linear-gradient(135deg, #F0FDFA 0%, #E6FFFA 100%);
    border: 2px solid #14B8A6;
    padding: 2.5rem;
}

.security-promise-title {
    color: #0D9488;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-promise-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'DM Sans', sans-serif;
}

.security-icon-card {
    text-align: center;
}

.security-icon-large {
    font-size: 48px;
    color: #14B8A6;
    margin-bottom: 1rem;
    display: block;
}

.security-meta-text {
    font-size: 0.875rem;
    color: #6B7280;
}

.security-download-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.security-download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #14B8A6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.security-download-button:hover {
    background: #0D9488;
    transform: translateY(-2px);
}

.security-download-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #14B8A6;
    border: 2px solid #14B8A6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.security-download-button-outline:hover {
    background: #F0FDFA;
    transform: translateY(-2px);
}

.security-info-box {
    margin-top: 1rem;
    padding: 1rem;
    background: #F0FDFA;
    border-radius: 8px;
}

.security-info-text {
    font-size: 0.875rem;
    margin: 0;
    color: #0D9488;
    font-family: 'DM Sans', sans-serif;
}

.security-info-text .material-icons {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

/* Notification Methods Container */
.notification-methods-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.notification-method-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    border: 2px solid #BAE6FD;
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}

.notification-method-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0EA5E9 0%, #0284C7 100%);
}

.notification-method-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
    border-color: #0EA5E9;
}

.notification-icon-wrapper {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.notification-icon-wrapper .material-icons {
    font-size: 28px;
    color: #0EA5E9;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0 0 0.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.notification-description {
    color: #4B5563;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.5;
    font-family: 'DM Sans', sans-serif;
}

.notification-badge {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.notification-badge .material-icons {
    font-size: 20px;
    color: #10B981;
}

/* Animation for notification cards */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-method-card {
    animation: slideInRight 0.6s ease-out;
}

.notification-method-card:nth-child(1) {
    animation-delay: 0.1s;
}

.notification-method-card:nth-child(2) {
    animation-delay: 0.2s;
}

.notification-method-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-subtitle {
        font-size: 1.125rem;
    }
    
    .legal-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .usage-grid,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-types,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
}