/* ===== RESET STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: #fff;
}

/* ===== HERO SECTION ===== */
.privacy-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), 
                url('https://images.unsplash.com/photo-1581094794329-c811e6aefb1f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
    animation: fadeIn 1s ease-in;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* ===== CONTENT SECTION ===== */
.privacy-content {
    padding: 60px 0;
    background-color: #fff;
    animation: fadeInUp 0.8s ease-in;
}

.privacy-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px;
}

.privacy-intro {
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

/* ===== SECTION BLOCKS ===== */
.privacy-section {
    margin-bottom: 50px;
    padding: 30px 20px;
    border-left: 4px solid #2c3e50;
    background-color: #f9f9f9;
    transition: background 0.3s ease;
}

.privacy-section:hover {
    background-color: #f0f0f0;
    border-left-color: #3498db;
}

.privacy-section h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ddd;
    position: relative;
    padding-left: 30px;
}

.privacy-section h2::before {
    content: "\f023";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

/* ===== LIST STYLES ===== */
.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.privacy-section ul li::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.5rem;
    color: #3498db;
}

.privacy-section address {
    font-style: normal;
    margin-top: 15px;
    line-height: 1.7;
    color: #555;
}

.privacy-section strong {
    color: #2c3e50;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 80px 20px 40px;
    }

    .privacy-hero h1 {
        font-size: 2.5rem;
    }

    .privacy-section h2 {
        font-size: 1.4rem;
        padding-left: 25px;
    }

    .privacy-section h2::before {
        left: 0;
    }
}

@media (max-width: 576px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .privacy-section {
        padding: 25px 15px;
    }
}















/* Crystal Clear Back Button CSS */
.sharp-back-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.sharp-back-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e0e3e7;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sharp-arrow {
  width: 20px;
  height: 20px;
  fill: #3498db;
  transition: transform 0.2s ease;
}

.sharp-button-text {
  color: #2c3e50;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

/* Hover Effects */
.sharp-back-button:hover {
  border-color: #3498db;
  box-shadow: 0 4px 16px rgba(52,152,219,0.15);
}

.sharp-back-button:hover .sharp-arrow {
  transform: translateX(-3px);
}

.sharp-back-button:hover .sharp-button-text {
  color: #3498db;
}

/* Active State */
.sharp-back-button:active {
  transform: scale(0.96);
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .sharp-back-container {
    top: 12px;
    left: 12px;
  }
  
  .sharp-back-button {
    padding: 10px 12px;
    gap: 6px;
  }
  
  .sharp-arrow {
    width: 18px;
    height: 18px;
  }
  
  .sharp-button-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .sharp-back-button {
    padding: 8px 10px 8px 8px;
    min-width: 40px;
  }
  
  .sharp-button-text {
    display: none;
  }
  
  .sharp-back-button:hover .sharp-button-text {
    display: inline;
    margin-left: 4px;
  }
}



