/**
 * funs one Custom Styles
 *
 * @package funs_one
 * @since 1.0.0
 */

/* Font Smoothing */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Body Styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    background: #000000;
    width: 100%;
    max-width: 100vw;
}

/* Headings */
h1 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: -0.04em;
    font-weight: 800;
}

/* Grain Texture Overlay */
.grain-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 3;
}

/* Wave Animations */
@keyframes wave {
    0%, 100% {
        transform: translate(0px, 0px) scale(1.15);
    }
    25% {
        transform: translate(-30px, 20px) scale(1.16) rotate(1deg);
    }
    50% {
        transform: translate(-20px, -30px) scale(1.14) rotate(-1deg);
    }
    75% {
        transform: translate(30px, -20px) scale(1.16) rotate(0.5deg);
    }
}

@keyframes waveReverse {
    0%, 100% {
        transform: scale(1.15);
    }
    25% {
        transform: translate(20px, -15px) scale(1.14) rotate(-0.5deg);
    }
    50% {
        transform: translate(15px, 25px) scale(1.16) rotate(1deg);
    }
    75% {
        transform: translate(-25px, 15px) scale(1.14) rotate(-0.5deg);
    }
}

/* Parallax */
.parallax-bg {
    animation: wave 4s ease-in-out infinite;
}

.parallax-bg img {
    animation: waveReverse 5s ease-in-out infinite;
}

/* Gradient Overlay */
.gradient-overlay {
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(20, 20, 25, 0.4) 25%,
        rgba(40, 40, 50, 0.35) 50%,
        rgba(20, 20, 30, 0.45) 75%,
        rgba(0, 0, 0, 0.5) 100%);
}

/* Section Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: slideInUp 0.8s ease-out both;
}

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Vignette Effect */
.vignette {
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.5);
}

/* Logo Glow */
.logo-glow {
    filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
}

/* Navigation Link Underline Animation */
.nav-link {
    position: relative;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 50%;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

/* Title Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .parallax-bg, .parallax-bg img {
        transition: none;
        animation: none;
    }
}

/* Glass Morphism for Header */
.header-glass {
    backdrop-filter: blur(10px);
    background: transparent;
    border-bottom: none;
}

/* Hero Title Text Sizes */
@media (min-width: 1536px) {
    .hero-title-text {
        font-size: 8rem;
        line-height: 1;
    }
}

@media (min-width: 1280px) and (max-width: 1535px) {
    .hero-title-text {
        font-size: 7rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-title-text {
        font-size: 6rem;
        line-height: 1;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero-title-text {
        font-size: 5rem;
        line-height: 1;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .hero-title-text {
        font-size: 4.5rem;
        line-height: 1.15;
    }
}

@media (max-width: 639px) {
    .hero-title-text {
        font-size: 4.5rem;
        line-height: 1.15;
    }
}

/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay Classes for Stagger Animations */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }

/* Responsive Section Titles */
.section-title {
    font-size: 2.5rem; /* 40px - mobile */
    line-height: 1;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3.5rem; /* 56px - sm */
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 4rem; /* 64px - md */
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 5rem; /* 80px - lg */
    }
}

@media (min-width: 1280px) {
    .section-title {
        font-size: 80px; /* Original size - xl */
    }
}

/* Responsive Heading Sizes */
.heading-xl {
    font-size: 2rem; /* 32px - mobile */
    line-height: 1.2;
}

@media (min-width: 640px) {
    .heading-xl {
        font-size: 2.5rem; /* 40px - sm */
    }
}

@media (min-width: 768px) {
    .heading-xl {
        font-size: 3rem; /* 48px - md */
    }
}

@media (min-width: 1024px) {
    .heading-xl {
        font-size: 3.75rem; /* 60px - lg */
    }
}

/* Responsive Body Text */
.text-responsive-xl {
    font-size: 1rem; /* 16px - mobile */
    line-height: 1.75;
}

@media (min-width: 640px) {
    .text-responsive-xl {
        font-size: 1.125rem; /* 18px - sm */
    }
}

@media (min-width: 768px) {
    .text-responsive-xl {
        font-size: 1.25rem; /* 20px - md */
    }
}

/* Mobile Menu Animations */
#mobileNav.active {
    opacity: 1;
    visibility: visible;
}

#mobileNav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

#mobileNav .mobile-nav-link {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, color 0.3s;
}

#mobileNav .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
#mobileNav .mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
#mobileNav .mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
#mobileNav .mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }

/* Hamburger Animation to X */
#mobileMenuBtn.active #hamburger-line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobileMenuBtn.active #hamburger-line-2 {
    opacity: 0;
}

#mobileMenuBtn.active #hamburger-line-3 {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Touch-Friendly Targets */
@media (max-width: 1023px) {
    a, button {
        min-height: 44px;
    }

    .nav-link {
        padding: 12px 0;
    }
}

/* WordPress Core Classes */
.alignnone {
    margin: 1.5em 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 1.5em auto;
}

.alignright {
    float: right;
    margin: 0.5em 0 1.5em 1.5em;
}

.alignleft {
    float: left;
    margin: 0.5em 1.5em 1.5em 0;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5em;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.pagination li {
    display: inline-block;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.pagination .current {
    background: #dc2626;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 1rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #1b1d22;
    padding: 1.5rem 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

/* News Card Styles */
.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

/* Category Badge Styles */
.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 0.25rem;
    color: white;
}

.category-badge.press-release { background: #dc2626; }
.category-badge.news { background: #374151; }
.category-badge.event { background: #7c3aed; }
.category-badge.case-study { background: #2563eb; }

/* Content Area Styles */
.content-area {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-area h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.content-area h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.content-area p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.content-area ul,
.content-area ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.content-area li {
    margin-bottom: 0.5rem;
}

.content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.content-area blockquote {
    border-left: 4px solid #dc2626;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Form 7 Styles */
.wpcf7-form p {
    margin-bottom: 1.5rem;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-family: 'Noto Sans JP', sans-serif;
    transition: all 0.3s;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(255, 255, 255, 0.08);
}

.wpcf7-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #dc2626;
    color: white;
    font-size: 1.125rem;
    font-weight: bold;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
}

.wpcf7-form input[type="submit"]:hover {
    background: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.5);
}

.wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.wpcf7-response-output {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.wpcf7-mail-sent-ok {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid #dc2626;
}

/* ==========================================
   Article Content Styles (WordPress Editor)
   ========================================== */

.article-content {
    line-height: 2;
    font-size: 1rem;
}

/* Headings */
.article-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid #dc2626;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.article-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
.article-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 500;
    line-height: 2;
}

/* Lists */
.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.article-content li {
    margin-bottom: 0.75rem;
    position: relative;
    font-weight: 500;
    line-height: 1.8;
}

.article-content ul li {
    padding-left: 0.5rem;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    background: #dc2626;
    border-radius: 50%;
}

.article-content ol {
    counter-reset: item;
}

.article-content ol li {
    counter-increment: item;
    padding-left: 0.5rem;
}

.article-content ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: -2rem;
    color: #dc2626;
    font-weight: 700;
}

/* Nested Lists */
.article-content ul ul,
.article-content ol ol,
.article-content ul ol,
.article-content ol ul {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

/* Links */
.article-content a {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.article-content a:hover {
    color: #ef4444;
}

/* Strong/Bold */
.article-content strong,
.article-content b {
    font-weight: 700;
    color: white;
}

/* Emphasis/Italic */
.article-content em,
.article-content i {
    font-style: italic;
}

/* Images */
.article-content img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2rem 0;
    display: block;
}

.article-content figure {
    margin: 2rem 0;
}

.article-content figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
}

/* Blockquote */
.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: rgba(220, 38, 38, 0.05);
    border-left: 4px solid #dc2626;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-content blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

/* Code */
.article-content code {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ef4444;
    border-radius: 0.25rem;
    font-size: 0.875em;
    font-family: 'Courier New', Courier, monospace;
}

.article-content pre {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #1f2228;
    border-radius: 0.75rem;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-content pre code {
    padding: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Horizontal Rule */
.article-content hr {
    margin: 3rem 0;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(220, 38, 38, 0.5), transparent);
}

/* Tables */
.article-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0.75rem;
    overflow: hidden;
}

.article-content thead {
    background: rgba(220, 38, 38, 0.1);
}

.article-content th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: white;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
}

.article-content td {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* WordPress Alignment Classes */
.article-content .alignleft {
    float: left;
    margin: 0.5rem 2rem 1rem 0;
    max-width: 50%;
}

.article-content .alignright {
    float: right;
    margin: 0.5rem 0 1rem 2rem;
    max-width: 50%;
}

.article-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.article-content .alignnone {
    margin: 1rem 0;
}

/* WordPress Captions */
.article-content .wp-caption {
    max-width: 100%;
}

.article-content .wp-caption-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
}

/* WordPress Gallery */
.article-content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.article-content .gallery-item {
    margin: 0;
}

.article-content .gallery-item img {
    margin: 0;
    border-radius: 0.5rem;
}

/* WordPress Embeds */
.article-content .wp-block-embed,
.article-content iframe,
.article-content embed {
    max-width: 100%;
    margin: 2rem 0;
    border-radius: 0.75rem;
}

/* Responsive Tables */
@media (max-width: 768px) {
    .article-content table {
        font-size: 0.875rem;
    }
    
    .article-content th,
    .article-content td {
        padding: 0.75rem;
    }
    
    .article-content .alignleft,
    .article-content .alignright {
        float: none;
        max-width: 100%;
        margin: 1rem 0;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .article-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .article-content h3 {
        font-size: 1.25rem;
        margin-top: 1.75rem;
        margin-bottom: 0.875rem;
    }
    
    .article-content h4 {
        font-size: 1.125rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .article-content blockquote {
        padding: 1rem 1.5rem;
    }
    
    .article-content pre {
        padding: 1rem;
        font-size: 0.8125rem;
    }
}

/* ==========================================
   Privacy Policy Styles
   ========================================== */

.privacy-section {
    margin-bottom: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.privacy-section:first-child {
    border-top: none;
    padding-top: 0;
}

.privacy-number {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.privacy-number span {
    font-size: 1.125rem;
    font-weight: 900;
    color: #dc2626;
    font-family: 'Poppins', sans-serif;
}

.privacy-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .privacy-title {
        font-size: 1.5rem;
    }
}

.privacy-text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-list {
    margin-top: 1rem;
    padding-left: 1rem;
}

.privacy-list-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.privacy-bullet {
    width: 0.375rem;
    height: 0.375rem;
    background: #dc2626;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.privacy-bullet-small {
    width: 0.25rem;
    height: 0.25rem;
    background: #dc2626;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.privacy-subheading {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.privacy-sublist {
    margin-top: 0.75rem;
    padding-left: 1rem;
}

.privacy-sublist-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.privacy-date {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    margin-top: 1rem;
}

/* Responsive Typography for Privacy Page */
@media (max-width: 768px) {
    .privacy-section {
        margin-bottom: 2rem;
        padding-top: 2rem;
    }
    
    .privacy-title {
        font-size: 1.125rem;
    }
    
    .privacy-text {
        font-size: 0.9375rem;
    }
}
