
        .privacy-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .privacy-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/patterns/washi-pattern-light.png');
            opacity: 0.1;
            z-index: 0;
        }
        
        .privacy-content {
            position: relative;
            z-index: 1;
        }
        
        .privacy-title {
            font-family: 'Noto Serif JP', serif;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .privacy-subtitle {
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 300;
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .privacy-body {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 40px;
            margin-bottom: 40px;
        }
        
        .privacy-body h2 {
            color: var(--primary-color);
            font-family: 'Noto Serif JP', serif;
            font-weight: 600;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 20px;
            margin-top: 30px;
        }
        
        .privacy-body h2:first-child {
            margin-top: 0;
        }
        
        .privacy-body p {
            margin-bottom: 15px;
            line-height: 1.7;
        }
        
        .privacy-body ul {
            margin-bottom: 20px;
        }
        
        .privacy-body li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .privacy-date {
            font-style: italic;
            color: #6c757d;
            margin-top: 30px;
            text-align: right;
        }
        
        @media (max-width: 768px) {
            .privacy-header {
                padding: 40px 0;
            }
            
            .privacy-body {
                padding: 25px;
            }
        }
    

