 * { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; } body { background-color: #f9fafb; color: #1f2937; line-height: 1.7; padding: clamp(15px, 3vw, 25px); min-height: 100vh; } .container { background-color: white; border-radius: clamp(12px, 2vw, 16px); box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08); padding: clamp(25px, 5vw, 50px); margin: 30px auto; border: 1px solid #e5e7eb; max-width: 1200px; width: 100%; } h1 { color: #111827; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; font-weight: 700; text-align: center; padding-bottom: 20px; border-bottom: 3px solid #10b981; } h2 { color: #059669; font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: clamp(30px, 5vw, 40px); margin-bottom: 20px; font-weight: 600; padding-bottom: 10px; border-bottom: 2px solid #e5e7eb; } h3 { color: #374151; font-size: clamp(1.1rem, 2vw, 1.3rem); margin-top: 25px; margin-bottom: 15px; font-weight: 600; } p { margin-bottom: clamp(15px, 2vw, 18px); font-size: clamp(1rem, 1.5vw, 1.1rem); color: #4b5563; } .policy-section { margin: clamp(25px, 4vw, 35px) 0; } .section-card { background-color: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: clamp(20px, 3vw, 30px); margin-bottom: 20px; transition: all 0.3s ease; } .section-card:hover { border-color: #10b981; box-shadow: 0 8px 25px rgba(16, 185, 129, 0.1); } .section-title { color: #059669; font-weight: 600; margin-bottom: 15px; font-size: clamp(1.2rem, 2vw, 1.4rem); display: flex; align-items: center; } .section-title:before { content: "🔒"; margin-right: 10px; font-size: 1.2rem; } .info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(15px, 2vw, 20px); margin: 20px 0; } .info-item { background-color: #f0fdf4; border-left: 4px solid #10b981; padding: clamp(15px, 2vw, 20px); border-radius: 8px; } .info-label { font-weight: 600; color: #065f46; margin-bottom: 8px; font-size: clamp(0.95rem, 1.3vw, 1.05rem); } .info-value { color: #4b5563; font-size: clamp(0.9rem, 1.2vw, 1rem); } .highlight-box { background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%); border-left: 5px solid #10b981; padding: clamp(20px, 3vw, 25px); margin: 25px 0; border-radius: 10px; } .highlight-box strong { color: #065f46; } ul, ol { margin-left: clamp(20px, 3vw, 30px); margin-bottom: 20px; } li { margin-bottom: 10px; padding-left: 5px; color: #4b5563; font-size: clamp(0.95rem, 1.3vw, 1.05rem); } .contact-section { text-align: center; margin-top: clamp(40px, 6vw, 50px); padding: clamp(25px, 4vw, 40px); background: linear-gradient(135deg, #059669 0%, #10b981 100%); color: white; border-radius: 12px; } .contact-button { display: inline-block; background-color: white; color: #059669; padding: clamp(12px, 2vw, 16px) clamp(25px, 4vw, 40px); text-decoration: none; border-radius: 50px; font-weight: bold; font-size: clamp(1rem, 1.5vw, 1.1rem); margin-top: 20px; transition: all 0.3s ease; border: 2px solid white; } .contact-button:hover { background-color: transparent; color: white; } .footer { margin-top: clamp(40px, 6vw, 50px); padding-top: 25px; border-top: 1px solid #d1d5db; font-size: clamp(0.85rem, 1.2vw, 0.9rem); color: #6b7280; text-align: center; } .update-date { background-color: #fffbeb; border: 1px solid #fbbf24; padding: 15px; border-radius: 8px; margin: 20px 0; text-align: center; font-weight: 500; color: #92400e; } @media (max-width: 768px) { body { padding: 10px; } .container { padding: 20px; margin: 20px auto; } .info-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .container { padding: 15px; border-radius: 10px; } .contact-section { padding: 20px; } } 