 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-blue: #4A90E2;
     --secondary-green: #7ED957;
     --accent-cyan: #50C9CE;
     --dark-text: #2C3E50;
     --light-text: #7F8C8D;
     --white: #FFFFFF;
     --light-bg: #F8FAFB;
 }

 html,
 body {
     margin: 0;
     padding: 0;
     width: 100%;
     min-height: 100%;
 }

 body {
     font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
     line-height: 1.6;
     color: var(--dark-text);
     background: var(--light-bg);
     font-weight: 400;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Outfit', sans-serif;
     letter-spacing: -0.03em;
     font-weight: 700;
 }

 /* Header */
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     padding: 1rem 0;
     background: linear-gradient(180deg,
             rgba(255, 255, 255, 0.98) 0%,
             rgba(248, 250, 251, 0.95) 100%);
     border-bottom: 1px solid rgba(74, 144, 226, 0.08);
     box-shadow: 0 1px 0 rgba(74, 144, 226, 0.06),
         0 8px 32px rgba(0, 0, 0, 0.04);
 }

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

 .logo-container {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     text-decoration: none;
     transition: transform 0.3s ease;
 }

 .logo-container:hover {
     transform: translateY(-2px);
 }

 .logo-wrapper {
     width: auto;
     height: 80px;
 }

 .logo {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 .brand-name {
     font-family: 'Outfit', sans-serif;
     font-size: 1.4rem;
     font-weight: 700;
     letter-spacing: -0.02em;
     background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .back-link {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.7rem 1.5rem;
     background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
     color: var(--white);
     text-decoration: none;
     border-radius: 24px;
     font-weight: 600;
     font-size: 0.9rem;
     transition: all 0.3s ease;
     box-shadow: 0 4px 14px rgba(74, 144, 226, 0.35);
 }

 .back-link:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(74, 144, 226, 0.45);
 }

 /* Privacy Content */
 .privacy-hero {
     padding: 140px 2rem 4rem;
     background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
     color: var(--white);
     text-align: center;
 }

 .privacy-hero h1 {
     font-size: clamp(2rem, 4vw, 3rem);
     margin-bottom: 1rem;
     color: var(--white);
 }

 .privacy-hero p {
     font-size: 1.1rem;
     opacity: 0.95;
     max-width: 700px;
     margin: 0 auto;
 }

 .privacy-content {
     max-width: 900px;
     margin: 0 auto;
     padding: 4rem 2rem;
     background: var(--white);
 }

 .privacy-section {
     margin-bottom: 3rem;
 }

 .privacy-section h2 {
     font-size: 1.8rem;
     margin-bottom: 1.2rem;
     color: var(--dark-text);
     padding-bottom: 0.8rem;
     border-bottom: 2px solid rgba(74, 144, 226, 0.1);
 }

 .privacy-section h3 {
     font-size: 1.3rem;
     margin: 2rem 0 1rem;
     color: var(--dark-text);
 }

 .privacy-section p {
     margin-bottom: 1rem;
     line-height: 1.8;
     color: var(--light-text);
 }

 .privacy-section ul,
 .privacy-section ol {
     margin-left: 2rem;
     margin-bottom: 1.5rem;
     color: var(--light-text);
 }

 .privacy-section li {
     margin-bottom: 0.7rem;
     line-height: 1.8;
 }

 .privacy-section strong {
     color: var(--dark-text);
     font-weight: 600;
 }

 .highlight-box {
     background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(80, 201, 206, 0.05));
     border-left: 4px solid var(--primary-blue);
     padding: 1.5rem;
     border-radius: 12px;
     margin: 2rem 0;
 }

 .contact-box {
     background: var(--light-bg);
     padding: 2rem;
     border-radius: 20px;
     margin-top: 3rem;
     text-align: center;
 }

 .contact-box h3 {
     margin-bottom: 1rem;
 }

 .contact-box p {
     margin-bottom: 1.5rem;
 }

 .contact-box a {
     color: var(--primary-blue);
     text-decoration: none;
     font-weight: 600;
 }

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

 /* Footer */
 footer {
     background: var(--dark-text);
     color: var(--white);
     padding: 2rem;
     text-align: center;
 }

 .footer-links {
     display: flex;
     justify-content: center;
     gap: 2rem;
     margin-bottom: 1rem;
     flex-wrap: wrap;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.75);
     text-decoration: none;
     font-size: 0.9rem;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--accent-cyan);
 }

 .footer-copyright {
     color: rgba(255, 255, 255, 0.6);
     font-size: 0.88rem;
 }

 @media (max-width: 768px) {
     .privacy-content {
         padding: 3rem 1.5rem;
     }

     .privacy-section ul,
     .privacy-section ol {
         margin-left: 1.2rem;
     }

     .back-link {
         padding: 0.6rem 1.2rem;
         font-size: 0.85rem;
     }
 }