/* 
===============================
Table of Contents
===============================
1. Base Styles
2. Typography
3. Components
   3.1 Buttons
   3.2 Forms
   3.3 Cards
   3.4 Timeline
   3.5 Cookie Consent
4. Layout
   4.1 Header
   4.2 Navigation
   4.3 Footer
   4.4 Sections
5. Pages
   5.1 Home
   5.2 Why We Do It
   5.3 FAQ
   5.4 Contact
   5.5 Thank You
   5.6 Policy Pages
6. Utilities
7. Animations
8. Media Queries
*/

/*===============================
  1. Base Styles
===============================*/
:root {
  /* Primary Colors */
  --primary-color: #0E76E6;
  --primary-dark: #0A5BBF;
  --primary-light: #4F9DF1;
  
  /* Secondary Colors */
  --secondary-color: #FF5A5F;
  --secondary-dark: #E84145;
  --secondary-light: #FF7E83;
  
  /* Accent Colors */
  --accent-color: #00BFA6;
  --accent-dark: #009583;
  --accent-light: #33D6C2;
  
  /* Background Colors */
  --bg-light: #F8FBFF;
  --bg-dark: #16213E;
  
  /* Neutral Colors */
  --dark-blue: #121C42;
  --gray: #6C757D;
  --light-gray: #E9ECEF;
  --white: #FFFFFF;
  
  /* Typography */
  --body-font: 'Outfit', sans-serif;
  --heading-font: 'Outfit', sans-serif;
  
  /* Spacing */
  --section-spacing: 100px;
  --element-spacing: 30px;
  
  /* Border Radius */
  --border-radius-sm: 5px;
  --border-radius: 10px;
  --border-radius-lg: 20px;
  
  /* Transitions */
  --transition-fast: 0.3s ease;
  --transition: 0.5s ease;
  --transition-slow: 0.8s ease;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-blue);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/*===============================
  2. Typography
===============================*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
}

blockquote {
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  background-color: rgba(14, 118, 230, 0.05);
  margin: 30px 0;
  font-style: italic;
  color: var(--dark-blue);
}

/*===============================
  3. Components
===============================*/

/* 3.1 Buttons */
.btn {
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(14, 118, 230, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 90, 95, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(14, 118, 230, 0.3);
}

.btn-outline-secondary {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 90, 95, 0.3);
}

/* 3.2 Forms */
.form-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 50px;
}

.form-control,
.form-select {
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  padding: 12px 20px;
  height: auto;
  font-size: 16px;
  color: var(--dark-blue);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(14, 118, 230, 0.25);
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
}

.form-floating > label {
  padding: 1rem 0.75rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* IntlTelInput styling */
.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 999;
}

/* 3.3 Cards */
.impact-card,
.matters-card,
.resource-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.impact-card:hover,
.matters-card:hover,
.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.impact-icon,
.matters-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(14, 118, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.impact-icon i,
.matters-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.resource-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 191, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.resource-icon i {
  font-size: 35px;
  color: var(--accent-color);
}

.related-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  height: 100%;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.related-content {
  padding: 25px;
}

.related-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.read-more {
  font-weight: 500;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.read-more i {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more:hover i {
  transform: translateX(5px);
}

.contact-info-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform var(--transition-fast);
}

.contact-info-card:hover {
  transform: translateY(-10px);
}

.contact-info-card .icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(14, 118, 230, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.contact-info-card .icon-box i {
  font-size: 35px;
  color: var(--primary-color);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.contact-info-card .note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 10px;
}

.device-era {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  height: 100%;
  box-shadow: var(--shadow);
}

.device-image {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.device-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.device-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}

.device-features li:last-child {
  border-bottom: none;
}

/* 3.4 Timeline */
.timeline-container {
  position: relative;
  padding: 30px 0;
}

.timeline-item {
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  padding: 30px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.timeline-image {
  position: relative;
  z-index: 1;
}

.era-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(14, 118, 230, 0.3);
}

.timeline-features {
  list-style-type: none;
  padding-left: 0;
  margin: 20px 0;
  background-color: rgba(14, 118, 230, 0.05);
  border-radius: var(--border-radius);
  padding: 20px;
}

.timeline-features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
}

.timeline-features li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

/* 3.5 Cookie Consent */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: 100%;
}

.cookie-content h4 {
  margin-bottom: 15px;
}

.cookie-content p {
  margin-bottom: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-settings-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  display: none;
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray);
}

.cookie-modal-body {
  padding: 30px;
}

.cookie-category {
  margin-bottom: 30px;
}

.cookie-category:last-child {
  margin-bottom: 0;
}

.cookie-checkbox-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-checkbox-wrapper input {
  margin-right: 10px;
}

.cookie-checkbox-wrapper label {
  font-weight: 500;
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--light-gray);
  text-align: right;
}

/* Accordion Styling */
.accordion-item {
  border: 1px solid var(--light-gray);
  margin-bottom: 15px;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}

.accordion-button {
  background-color: var(--white);
  box-shadow: none !important;
  padding: 20px 25px;
  font-weight: 500;
  color: var(--dark-blue);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(14, 118, 230, 0.05);
  color: var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230E76E6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 25px;
  background-color: var(--bg-light);
}

/* Tabs Styling */
.nav-pills .nav-link {
  background-color: var(--light-gray);
  color: var(--dark-blue);
  border-radius: 30px;
  padding: 10px 20px;
  margin: 0 5px;
  transition: all var(--transition-fast);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--primary-color);
  color: var(--white);
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: rgba(14, 118, 230, 0.1);
}

/*===============================
  4. Layout
===============================*/

/* 4.1 Header */
.header-area {
  background-color: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 50px;
  width: auto;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
}

/* 4.2 Navigation */
.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 0;
}

.navbar-toggler {
  border: none;
  padding: 0;
  font-size: 1.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  margin-left: auto;
}

.nav-item {
  margin: 0 5px;
}

.nav-link {
  color: var(--dark-blue);
  font-weight: 500;
  padding: 10px 15px !important;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: var(--primary-color);
  background-color: rgba(14, 118, 230, 0.05);
}

/* 4.3 Footer */
.footer-area {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-info p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.25rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* 4.4 Sections */
section {
  padding: 100px 0;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

section:nth-child(odd) {
  background-color: var(--white);
}

.page-banner {
  background-color: var(--bg-dark);
  padding: 80px 0;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 118, 230, 0.9) 0%, rgba(0, 191, 166, 0.9) 100%);
  opacity: 0.8;
}

.banner-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.banner-content h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/*===============================
  5. Pages
===============================*/

/* 5.1 Home */
.hero-section {
  padding: 150px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(14, 118, 230, 0.1) 0%, rgba(0, 191, 166, 0.1) 100%);
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -300px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 90, 95, 0.1) 0%, rgba(14, 118, 230, 0.1) 100%);
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--gray);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 118, 230, 0.2) 0%, rgba(0, 191, 166, 0.2) 100%);
  z-index: 1;
}

.evolution-timeline {
  background-color: var(--white);
  position: relative;
}

.infrastructure-evolution {
  background-color: var(--bg-light);
}

.infrastructure-content h2 {
  margin-bottom: 25px;
}

.infrastructure-comparison {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  margin: 30px 0;
  box-shadow: var(--shadow);
}

.comparison-item {
  margin-bottom: 25px;
}

.comparison-item:last-child {
  margin-bottom: 0;
}

.comparison-item h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.comparison-item ul {
  padding-left: 20px;
}

.comparison-item ul li {
  margin-bottom: 8px;
}

.devices-evolution {
  background-color: var(--white);
}

.impact-grid,
.devices-timeline {
  margin-top: 50px;
}

/* 5.2 Why We Do It */
.mission-section {
  background-color: var(--white);
}

.mission-content h2 {
  margin-bottom: 25px;
}

.mission-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.matters-grid {
  margin-top: 50px;
}

.approach-section {
  background-color: var(--bg-light);
}

.approach-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.approach-content h2 {
  margin-bottom: 25px;
}

.approach-pillars {
  margin-top: 30px;
}

.pillar-item {
  margin-bottom: 25px;
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.pillar-item h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.pillar-item h4 i {
  margin-right: 10px;
}

.vision-section {
  background-color: var(--white);
}

.vision-content {
  margin-top: 50px;
}

.vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.vision-quote {
  padding: 30px;
  background-color: rgba(14, 118, 230, 0.05);
  border-radius: var(--border-radius);
  margin: 40px 0;
  position: relative;
}

.vision-quote::before {
  content: """;
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 5rem;
  color: var(--primary-color);
  opacity: 0.2;
  line-height: 1;
}

.vision-quote blockquote {
  border-left: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  text-align: center;
  color: var(--dark-blue);
}

.resources-section {
  background-color: var(--bg-light);
}

.resources-content {
  margin-top: 50px;
}

.resources-cta {
  margin-top: 50px;
}

/* 5.3 FAQ */
.faq-section {
  background-color: var(--white);
}

.faq-navigation {
  margin-bottom: 40px;
}

/* 5.4 Contact */
.contact-info-section {
  padding-bottom: 50px;
}

.contact-form-section {
  background-color: var(--bg-light);
  padding-top: 50px;
}

.map-section {
  padding: 0;
}

.map-container {
  height: 450px;
  width: 100%;
}

.map-container iframe {
  border: none;
}

.faq-contact-section {
  background-color: var(--white);
}

.faq-contact-content h2 {
  margin-bottom: 30px;
}

.contact-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* 5.5 Thank You */
.thank-you-section {
  padding: 120px 0;
  background-color: var(--white);
}

.thank-you-content {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  box-shadow: var(--shadow);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(0, 191, 166, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thank-you-icon i {
  font-size: 50px;
  color: var(--accent-color);
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method i {
  font-size: 25px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-method h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.contact-method p {
  margin-bottom: 0;
  color: var(--gray);
}

.related-content-section {
  background-color: var(--bg-light);
}

/* 5.6 Policy Pages */
.privacy-policy-section,
.terms-section,
.cookie-policy-section {
  background-color: var(--white);
}

.policy-content,
.terms-content {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow);
}

.policy-intro,
.terms-intro {
  margin-bottom: 40px;
}

.policy-section,
.terms-section {
  margin-bottom: 40px;
}

.policy-section h2,
.terms-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.policy-section h3,
.terms-section h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.policy-section ul,
.terms-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-section ul li,
.terms-section ul li {
  margin-bottom: 10px;
}

.contact-info-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.contact-info-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info-list li i {
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.cookie-type {
  margin-bottom: 40px;
}

.cookie-type h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.cookie-type table {
  margin-top: 20px;
}

/*===============================
  6. Utilities
===============================*/
.shadow {
  box-shadow: var(--shadow) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.rounded {
  border-radius: var(--border-radius) !important;
}

.rounded-lg {
  border-radius: var(--border-radius-lg) !important;
}

/*===============================
  7. Animations
===============================*/
.animated-title {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*===============================
  8. Media Queries
===============================*/
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  section {
    padding: 80px 0;
  }
  
  .hero-section {
    padding: 120px 0;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  section {
    padding: 70px 0;
  }
  
  .hero-section {
    padding: 100px 0;
  }
  
  .page-banner {
    padding: 60px 0;
  }
  
  .timeline-item {
    margin-bottom: 60px;
  }
  
  .timeline-content, 
  .timeline-image {
    margin-bottom: 30px;
  }
  
  .form-container,
  .thank-you-content,
  .policy-content,
  .terms-content {
    padding: 30px;
  }
  
  .nav-pills .nav-link {
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.35rem;
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    padding: 80px 0;
  }
  
  .page-banner {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .timeline-item {
    margin-bottom: 50px;
  }
  
  .navbar-collapse {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 15px;
  }
  
  .nav-item {
    margin: 0;
  }
  
  .nav-link {
    padding: 12px !important;
  }
  
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 15px 20px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .policy-content,
  .terms-content {
    padding: 25px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  section {
    padding: 50px 0;
  }
  
  .hero-section {
    padding: 70px 0;
  }
  
  .page-banner {
    padding: 40px 0;
  }
  
  .btn {
    padding: 10px 24px;
  }
  
  .btn-lg {
    padding: 12px 28px;
  }
  
  .timeline-content {
    padding: 25px;
  }
  
  .form-container {
    padding: 25px;
  }
  
  .thank-you-content {
    padding: 25px;
  }
  
  .footer-area {
    padding: 60px 0 0;
  }
  
  .copyright {
    margin-top: 40px;
  }
  
  .vision-quote {
    padding: 25px;
  }
  
  .vision-quote blockquote {
    font-size: 1.1rem;
  }
  
  .cookie-modal-content {
    width: 90%;
    max-width: 90%;
  }
  
  .policy-content,
  .terms-content {
    padding: 20px;
  }
}