/* Variables */
:root {
  /* Triadic color scheme */
  --primary-color: #f28e1c; /* Orange */
  --secondary-color: #1c7cf2; /* Blue */
  --tertiary-color: #8e1cf2; /* Purple */
  
  /* Variations */
  --primary-dark: #d17815;
  --primary-light: #f5a849;
  --secondary-dark: #0f5cb8;
  --secondary-light: #4a9af5;
  --tertiary-dark: #7015bf;
  --tertiary-light: #a64cf5;
  
  /* Neutrals */
  --dark: #222222;
  --medium-dark: #444444;
  --medium: #777777;
  --medium-light: #bbbbbb;
  --light: #f5f5f5;
  --white: #ffffff;
  
  /* Fonts */
  --heading-font: 'Roboto', sans-serif;
  --body-font: 'Lato', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s;
  --transition-medium: 0.4s;
  --transition-slow: 0.8s;
  
  /* Sizes */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius: 0px; /* Brutalism style - sharp edges */
  --border-radius-bio: 30px; /* Biomorphic elements */
  --card-border-radius: 8px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  
  /* Z-index layers */
  --z-header: 1000;
  --z-modal: 2000;
  --z-tooltip: 3000;
  --z-cookie: 9999;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

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

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

ul {
  list-style: none;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* Section Styling */
section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
}

/* Buttons */
.btn, 
button, 
input[type="submit"] {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
  text-align: center;
  box-shadow: 6px 6px 0 var(--dark); /* Brutalist shadow */
  position: relative;
  overflow: hidden;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
  background-color: var(--primary-dark);
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--dark);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
  transform: translate(6px, 6px);
  box-shadow: none;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  box-shadow: 6px 6px 0 var(--dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-small {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  box-shadow: 4px 4px 0 var(--dark);
}

.btn-small:hover {
  box-shadow: 2px 2px 0 var(--dark);
}

.btn-small:active {
  box-shadow: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: var(--z-header);
  transition: background-color var(--transition-medium) ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.logo a {
  color: var(--dark);
  text-decoration: none;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-list a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast) ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark);
  transition: all var(--transition-fast) ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s;
  animation-fill-mode: both;
}

.hero-content .btn {
  animation: fadeIn 1s ease-out 0.4s;
  animation-fill-mode: both;
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-bio);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium) ease;
  margin: 0 auto;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

/* Methodology Section */
.methodology {
  background-color: var(--light);
}

.methodology-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.methodology-text {
  flex: 1;
  min-width: 300px;
}

.methodology-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.methodology-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-bio);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium) ease;
  margin: 0 auto;
}

.methodology-image img:hover {
  transform: scale(1.02);
}

/* Statistics Section */
.statistics {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 5rem 0;
}

.statistics .section-title {
  color: var(--white);
}

.statistics .section-title::after {
  background-color: var(--white);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast) ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* Innovation Section */
.innovation {
  background-color: var(--white);
}

.innovation-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.innovation-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.innovation-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-bio);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium) ease;
  margin: 0 auto;
}

.innovation-image img:hover {
  transform: scale(1.02);
}

.innovation-text {
  flex: 1;
  min-width: 300px;
}

.innovation-text h3 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

/* Insights Section */
.insights {
  background-color: var(--light);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  text-align: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium) ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  color: var(--medium-dark);
}

.card-content .btn {
  align-self: center;
}

/* Resources Section */
.resources {
  background-color: var(--white);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  padding: 2rem;
  background-color: var(--light);
  border-radius: var(--card-border-radius);
  border-left: 5px solid var(--tertiary-color);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast) ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card h3 {
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
}

.resource-card ul {
  padding-left: 0;
}

.resource-card li {
  margin-bottom: 0.8rem;
}

.resource-card a {
  color: var(--secondary-color);
  transition: color var(--transition-fast) ease;
  display: inline-block;
  position: relative;
}

.resource-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-fast) ease;
}

.resource-card a:hover {
  color: var(--secondary-dark);
}

.resource-card a:hover::after {
  width: 100%;
}

/* Webinars Section */
.webinars {
  background-color: var(--light);
}

.webinars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./image/testimonial-pattern.jpg');
  background-size: 400px;
  background-repeat: repeat;
  opacity: 0.05;
  z-index: 0;
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition-fast) ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--primary-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  color: var(--medium-dark);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.testimonial-position {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* Careers Section */
.careers {
  background-color: var(--light);
}

.careers-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.careers-text {
  flex: 1;
  min-width: 300px;
}

.careers-text h3 {
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
}

.careers-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.careers-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-bio);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium) ease;
  margin: 0 auto;
}

.careers-image img:hover {
  transform: scale(1.02);
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item h4 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--medium-light);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: border-color var(--transition-fast) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo p {
  color: var(--medium-light);
}

.footer-links h3,
.footer-legal h3,
.footer-social h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-links ul,
.footer-legal ul,
.footer-social ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a,
.footer-legal a,
.footer-social a {
  color: var(--medium-light);
  transition: color var(--transition-fast) ease;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-social a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--medium-dark);
}

.footer-bottom p {
  color: var(--medium-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 1rem;
}

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

.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--medium);
  cursor: pointer;
  transition: color var(--transition-fast) ease;
}

.close:hover {
  color: var(--dark);
}

.job-listings {
  margin-top: 2rem;
}

.job-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--light);
  border-radius: var(--card-border-radius);
  border-left: 5px solid var(--secondary-color);
}

.job-card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.job-card p {
  margin-bottom: 0.8rem;
}

/* Page Banner */
.page-banner {
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: var(--header-height);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-content p {
  font-size: 1.2rem;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* About Page Specific Styles */
.history, .values, .team, .recognition, .community {
  padding: 5rem 0;
}

.history-content, .recognition-content, .community-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.history-image, .recognition-image, .community-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.history-image img, .recognition-image img, .community-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-bio);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-medium) ease;
  margin: 0 auto;
}

.history-text, .recognition-text, .community-text {
  flex: 1;
  min-width: 300px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast) ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-grid .card {
  text-align: center;
}

.team-grid .card-image {
  height: 350px;
}

.team-grid .position {
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 1rem;
}

.awards-list {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.awards-list li {
  margin-bottom: 0.8rem;
}

/* Contact Page Specific Styles */
.contact-main {
  padding: 5rem 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact-info-full, .contact-form-full {
  flex: 1;
  min-width: 300px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-method {
  padding: 1.5rem;
  background-color: var(--light);
  border-radius: var(--card-border-radius);
  border-left: 5px solid var(--primary-color);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.channel {
  padding: 1.5rem;
  background-color: var(--light);
  border-radius: var(--card-border-radius);
  text-align: center;
}

.channel h4 {
  color: var(--secondary-color);
  margin-bottom: 0.8rem;
}

.map {
  background-color: var(--light);
}

.map-container {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--medium-light);
  padding-bottom: 1.5rem;
}

.faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 2rem;
  color: var(--secondary-color);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--primary-color);
}

.faq-answer {
  margin-top: 1rem;
}

/* Privacy & Terms Page Styles */
.legal-content {
  padding-top: 100px;
  padding-bottom: 5rem;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  margin-bottom: 2rem;
  color: var(--medium);
  text-align: right;
  font-style: italic;
}

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

.legal-section h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.legal-section p, .legal-section ul, .legal-section ol {
  margin-bottom: 1.5rem;
}

.legal-section ul, .legal-section ol {
  padding-left: 1.5rem;
}

.legal-section li {
  margin-bottom: 0.8rem;
}

/* Success Page Styles */
.success-message {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
  text-align: center;
  background-color: var(--light);
}

.success-content {
  max-width: 700px;
  padding: 3rem;
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  margin: 0 auto 2rem;
  width: 150px;
  height: 150px;
}

.success-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.success-details {
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.related-resources {
  background-color: var(--white);
  padding: 5rem 0;
}

.newsletter {
  background-color: var(--secondary-color);
  padding: 5rem 0;
  color: var(--white);
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
}

.newsletter-form .checkbox label {
  color: var(--white);
}

.newsletter-form .checkbox a {
  color: var(--primary-light);
}

/* CTA Section */
.cta {
  background-color: var(--primary-color);
  padding: 5rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.cta-content p {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.cta-content .btn {
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: 6px 6px 0 var(--dark);
}

.cta-content .btn:hover {
  background-color: var(--light);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .nav-list {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .header {
    height: 70px;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    transition: left var(--transition-medium) ease;
    z-index: var(--z-header);
    padding: 2rem;
  }
  
  .nav.active {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-links, .footer-legal, .footer-social {
    width: 100%;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn, button, input[type="submit"] {
    width: 100%;
  }
  
  .success-actions {
    flex-direction: column;
    gap: 1rem;
  }
}