@import url('./assets/fonts/fonts.css');

:root {
  --headerbackground: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --background: #FFFFFF;
  --text-color: #1F1F1F;
  --text-secondary: #64748b;
  --accent-color: #929292;
  --border-color: #e2e8f0;
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-electric: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  padding-top: 0 !important;
  margin-top: 0 !important;
  background-color: var(--background);
  color: var(--text-color);
  text-rendering: optimizeLegibility;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.social-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.app-store-badge {
  height: 56px;
  transition: var(--transition);
  border-radius: 8px;
  overflow: hidden;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.instagram-icon {
  height: 44px;
  width: 44px;
  transition: var(--transition);
}

.instagram-icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-medium);
}

html, body, h1, h2, h3, h4, h5, h6, p, .subtitle, .padded-text {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-color);
}

p, .subtitle, .padded-text {
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: auto;
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.logo-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.logo-icon {
  width: 120px;
  height: 60px;
  object-fit: cover;
  object-position: 20% 30%;
  transition: transform 0.3s ease;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.95);
  padding: 3px 10px;
  border-radius: 12px;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border-color);
}

nav .logo:hover {
  background: none !important;
  color: inherit !important;
  transform: none !important;
  box-shadow: none !important;
}

.logo:hover .logo-container {
  transform: translateY(-2px);
}

.logo:hover .logo-image {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transform: scale(1.05);
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

nav {
  height: 80px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

nav a {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

nav a.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-light);
}

nav a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: none;
  box-shadow: var(--shadow-light);
}

nav a.active:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.link-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* ===== Main Content ===== */
.hero-section {
  min-height: 85vh;
  background: var(--gradient-electric);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
}

.hero-section .row {
  position: relative;
  z-index: 2;
  min-height: 80vh;
}

.hero-image {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-heavy);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

main h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  color: #667eea;
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.intro-text {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.2;
}

.intro-text .subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin-bottom: 2rem;
}

.padded-text {
  font-size: 16px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 0 3em;
}

.subtitle {
  display: block;
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 1em;
}

/* ===== Feature Images ===== */
.feature-image-wrapper {
  max-width: 750px;
  margin: 2rem auto;
  border-radius: 25px;
  overflow: hidden;
  background: var(--gradient-primary);
  padding: 3rem;
  display: block;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 0 auto;
  box-shadow: var(--shadow-light);
}

.support-page .feature-image-wrapper {
  background: none;
  padding: 0;
  border-radius: 0;
}

/* ===== Section Headings ===== */
.section-heading {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 3rem;
}

h1.section-heading {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 auto 3rem auto;
  font-weight: 700;
  padding-top: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

h2.section-heading {
  text-align: center !important;
}

.right-text {
  text-align: right;
}

/* 2x2 Grid for How Wee Words Works */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Individual boxes */
.how-it-works-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-color);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.how-it-works-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

/* ===== Feature Cards ===== */
.feature-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-secondary);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-medium);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-family: "Oswald", sans-serif;
}

.lead {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  min-height: 1em;
}

.feature-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(31, 31, 31, 0.8);
  font-family: "Oswald", sans-serif;
  text-align: center;
}

.feature-description.left-text {
  text-align: left !important;
}

.feature-description.right-text {
  text-align: right !important;
}

/* Consistent page styling for all pages */
.features-page,
.support-page,
body:not(.home-page) {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #ddd6fe 100%);
  min-height: 100vh;
}

.features-page {
  padding-top: 2rem;
}

.features-page .container {
  padding-top: 2rem;
  padding-bottom: 5rem; /* ensures space before footer */

}

/* ===== Content Cards ===== */
.content-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.content-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* ===== Accordion Styling ===== */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.accordion-button {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: none;
  font-weight: 600;
  padding: 1.5rem;
  border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}

.how-it-works-box h3,
.how-it-works-box h4 {
  margin: 1em 0 0.25em 0;
  color: #667eea;
  font-weight: 600;
}

.how-it-works-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.how-it-works-box .subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  margin-bottom: 0.5em;
}

.how-it-works-box h4 {
  color: #764ba2;
  font-size: 1.2rem;
}

.how-it-works-box p,
.how-it-works-box .padded-text {
  font-size: 1.1rem;
  font-weight: 400;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
}

.padded-text ul {
  padding-left: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.padded-text ul li {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
}

/* Modern hamburger menu */
.open-sidebar-button {
  display: none;
  background: var(--gradient-primary);
  border: none;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
}

.open-sidebar-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.close-sidebar-button {
  display: none;
}

#sidebar-active {
  display: none;
}

/* Desktop: 1200px and up */
@media (min-width: 1200px) {
  .hero-section .row {
    min-height: 85vh;
  }

  .intro-text {
    padding: 1rem;
  }

  .link-container {
    max-width: 100%;
    margin: 0 auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .how-it-works-box {
    padding: 1rem;
  }
}

/* ===== Footer ===== */
.footer {
  background: white;
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.footer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 400;
}

.footer a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

/* Tablets & small desktops: 768px - 1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .hero-section .row {
    min-height: 90vh;
  }

  .intro-text {
    padding: 2rem;
  }

  .link-container {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    position: static;
    box-shadow: none;
  }

  .how-it-works-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
  }

  nav a {
    padding: 0 1rem;
  }

  .open-sidebar-button {
    display: none !important;
  }

  #sidebar-active:checked~.link-container {
    position: static !important;
    right: auto !important;
  }
}

/* Mobile: less than 768px */
@media (max-width: 767px) {
  .social-badges {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .app-store-badge {
    height: 48px;
  }

  .instagram-icon {
    height: 36px;
    width: 36px;
  }

  .hero-section {
    min-height: 100vh;
  }

  .hero-section .row {
    min-height: 100vh;
  }

  .intro-text {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .intro-text h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .intro-text .subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 1.5rem;
  }

  .hero-image {
    padding: 1rem;
  }

  nav {
    padding: 0 1rem;
  }

  .open-sidebar-button {
    display: flex;
    margin-left: auto;
  }

  .close-sidebar-button {
    display: none;
  }

  .logo {
    cursor: default;
    pointer-events: auto;
  }

  .logo-container {
    gap: 0.75rem;
  }

  .logo-image {
    width: 45px;
    height: 45px;
  }

  .logo-icon {
    width: 90px;
    height: 45px;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
    padding: 1px 6px;
  }

  .link-container {
    display: none;
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: flex-start;
    align-items: stretch;
    z-index: 1050;
    gap: 0.5rem;
  }

  #sidebar-active:checked~.link-container {
    display: flex;
    right: 0;
  }

  .link-container a {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 500;
    color: var(--text-color);
    padding: 1rem 1.5rem;
    text-decoration: none;
    display: flex;
    width: 100%;
    border-radius: 15px;
    text-align: left;
    background: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .link-container a:hover,
  .link-container a.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
  }

  #sidebar-active:checked~.link-container {
    display: flex;
    right: 0;
  }

  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1040;
  }

  #sidebar-active:checked~#overlay {
    display: block;
  }

  nav a {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 500 !important;
    font-size: 1.2rem !important;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .how-it-works-box {
    padding: 1.5rem;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer p {
    font-size: 0.8rem;
  }

  h1.section-heading {
    font-size: clamp(2rem, 8vw, 2.8rem);
    padding-top: 2rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .content-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

/* ===== Contact Form ===== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.contact-form .form-control {
  border: 2px solid rgba(102, 126, 234, 0.2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  padding: 15px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
  background: white;
  transform: translateY(-1px);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-form .btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 25px;
  padding: 15px 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  background: linear-gradient(135deg, #5a6fd8 0%, #6b4190 100%);
}

.contact-form .btn-primary:disabled {
  opacity: 0.7;
  transform: none;
}

.feature-card {
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
}

.feature-icon i {
  font-size: 1.5rem;
}

.content-card {
  padding: 2rem;
}

.contact-form {
  padding: 1.5rem;
}

.contact-form .btn-primary {
  padding: 12px 35px;
  font-size: 1rem;
}

.contact-form .form-control {
  padding: 12px 16px;
}

.privacy-icon {
  width: 80px;
  height: 80px;
}

.privacy-icon i {
  font-size: 2.5rem;
}

.section-icon {
  width: 50px;
  height: 50px;
}

.section-icon i {
  font-size: 1.25rem;
}

.accordion-button {
  padding: 1rem;
}

.accordion-body {
  padding: 1rem;
}

/* ===== Privacy Page Styling ===== */
.privacy-header {
  margin-bottom: 1rem;
}

.privacy-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
}

.privacy-icon i {
  font-size: 3rem;
  color: white;
}

.privacy-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.privacy-section:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.section-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-light);
}

.section-icon i {
  font-size: 1.5rem;
  color: white;
}

.privacy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.privacy-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(31, 31, 31, 0.8);
  margin: 0;
}

.privacy-cta {
  background: var(--gradient-primary);
  border-radius: 25px;
  padding: 3rem 2rem;
  color: white;
  box-shadow: var(--shadow-medium);
  margin-bottom: 1rem;
}

.privacy-cta h3 {
  color: white;
}

.privacy-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.privacy-cta .btn {
  background: white;
  color: var(--text-color);
  border: none;
  font-weight: 600;
}

.privacy-cta .btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .privacy-section {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .privacy-cta {
    padding: 2rem 1rem;
  }
}

.features-cards {
  margin-bottom: 1rem;
}