/* ==== BASE STYLES ==== */
:root {
  /* Color palette */
  --primary-color: #6a11cb;
  --primary-dark: #4b0d91;
  --primary-light: #8a3fdb;
  --secondary-color: #2575fc;
  --secondary-dark: #1a5fcf;
  --secondary-light: #4a8cfd;
  --accent-color: #ff4d94;
  --accent-dark: #e63b7e;
  --accent-light: #ff6ba5;
  --dark-color: #121212;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --dark-gradient: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
  --overlay-gradient: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  
  /* Typography */
  --heading-font: 'Archivo Black', sans-serif;
  --body-font: 'Roboto', sans-serif;
  
  /* Spacing */
  --section-spacing: 100px;
  --element-spacing: 30px;
  --card-spacing: 20px;
  
  /* Borders */
  --border-radius: 8px;
  --border-radius-lg: 15px;
  --border-radius-xl: 30px;
  
  /* Shadows */
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
  --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ==== RESET & GLOBAL STYLES ==== */
* {
  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-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

.title:not(.is-spaced)+.subtitle {
  margin-top: 0px !important;
}

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

p {
  margin-bottom: 1.5rem;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}

.section-header .title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header .title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

/* ==== BUTTONS ==== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-family: var(--body-font);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  z-index: -1;
}

.button:hover::before {
  left: 0;
}

.button.is-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.4);
}

.button.is-primary:hover {
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.6);
  transform: translateY(-2px);
}

.button.is-outlined {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.button.is-outlined:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.button.is-rounded {
  border-radius: 50px;
}

.button.is-large {
  font-size: 1.2rem;
  padding: 14px 32px;
}

/* ==== HEADER & NAVIGATION ==== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all var(--transition-normal);
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.header.scrolled .logo {
  color: var(--dark-color);
}

.logo span {
  color: var(--accent-color);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.navbar-burger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: all 0.25s ease-in-out;
}

.header.scrolled .navbar-burger span {
  background: var(--dark-color);
}

.navbar-burger span:nth-child(1) {
  top: 0px;
}

.navbar-burger span:nth-child(2) {
  top: 10px;
}

.navbar-burger span:nth-child(3) {
  top: 20px;
}

.navbar-burger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.navbar-burger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-end {
  display: flex;
  align-items: center;
}

.navbar-item {
  margin: 0 15px;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.header.scrolled .navbar-item {
  color: var(--dark-color);
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  transition: all var(--transition-normal);
}

.navbar-item:hover::after {
  width: 100%;
}

/* ==== HERO SECTION ==== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: var(--text-shadow);
  animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--white);
  text-shadow: var(--text-shadow);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .buttons {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* ==== SERVICES SECTION ==== */
.services-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.service-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-normal);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

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

.card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.service-card .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 1.5px;
}

.progress-container {
  margin-top: auto;
  padding-top: 20px;
}

.progress-container span {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.progress {
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--light-gray);
}

.progress.is-primary::-webkit-progress-value {
  background: var(--primary-gradient);
}

.progress.is-primary::-moz-progress-bar {
  background: var(--primary-gradient);
}

/* ==== HISTORY SECTION ==== */
.history-section {
  position: relative;
  overflow: hidden;
}

.history-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.image-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-normal);
}

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

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--medium-gray);
}

/* ==== TEAM SECTION ==== */
.team-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.team-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-normal);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

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

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

.team-card .subtitle {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.tag.is-primary {
  background: var(--primary-gradient);
  color: var(--white);
}

/* ==== RESEARCH SECTION ==== */
.research-section {
  position: relative;
  overflow: hidden;
}

.research-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.research-highlights {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.research-highlights h4 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.research-highlights h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 1.5px;
}

.research-highlights ul {
  list-style-type: none;
}

.research-highlights li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.research-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--primary-gradient);
  border-radius: 50%;
}

.research-stats {
  margin-top: 50px;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
}

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

.stat-box .stat-number {
  font-size: 3rem;
  margin-bottom: 10px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box .stat-text {
  font-size: 1.1rem;
  color: var(--dark-gray);
}

/* ==== RESOURCES SECTION ==== */
.resources-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.resource-card {
  height: 100%;
  padding: 40px 30px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--box-shadow);
  transition: all var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.resource-card h3 {
  margin-bottom: 20px;
}

.resource-links {
  list-style-type: none;
  text-align: left;
  width: 100%;
}

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

.resource-links a {
  display: block;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  background-color: var(--light-gray);
  transition: all var(--transition-normal);
  color: var(--dark-gray);
  font-weight: 500;
}

.resource-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateX(5px);
}

/* ==== INSIGHTS SECTION ==== */
.insights-section {
  position: relative;
  overflow: hidden;
}

.insights-list {
  list-style-type: none;
  margin-bottom: 30px;
}

.insights-list li {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.insights-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--primary-gradient);
  border-radius: 50%;
}

.case-studies {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.case-study-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--light-gray);
}

.case-study-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonials {
  margin-top: 80px;
}

.testimonial-card {
  height: 100%;
  padding: 30px;
  border-radius: var(--border-radius-lg);
  background: var(--white);
  box-shadow: var(--box-shadow);
  position: relative;
  transition: all var(--transition-normal);
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  text-align: right;
}

.author-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.author-title {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* ==== BLOG SECTION ==== */
.blog-section {
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: var(--secondary-gradient);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.blog-card {
  height: 100%;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all var(--transition-normal);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

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

.blog-date {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.blog-card .title {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card .button {
  align-self: flex-start;
  margin-top: auto;
}

/* ==== CONTACT SECTION ==== */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

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

.contact-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-item .text {
  flex-grow: 1;
}

.contact-item h3 {
  margin-bottom: 5px;
}

.social-media {
  margin-top: 40px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition-normal);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
}

.contact-form-container {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.contact-form .field {
  margin-bottom: 20px;
}

.contact-form .label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form .input,
.contact-form .textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.contact-form .input:focus,
.contact-form .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(106, 17, 203, 0.2);
  outline: none;
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form .checkbox input {
  width: 18px;
  height: 18px;
}

/* ==== FOOTER ==== */
.footer {
  background: var(--dark-gradient);
  color: var(--white);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--accent-color);
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.footer-links,
.footer-social {
  list-style-type: none;
}

.footer-links li,
.footer-social li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.newsletter {
  margin-top: 30px;
}

.newsletter p {
  opacity: 0.8;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--body-font);
  font-size: 1rem;
}

.newsletter-form .button {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 0 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.newsletter-form .button:hover {
  background: var(--accent-dark);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

/* ==== COOKIE POPUP ==== */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(18, 18, 18, 0.9);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-btn {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--transition-normal);
}

.cookie-btn:hover {
  background: var(--accent-dark);
}

/* ==== SUCCESS PAGE ==== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  padding: 50px 20px;
}

.success-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.success-message {
  margin-bottom: 30px;
}

/* ==== TERMS & PRIVACY PAGES ==== */
.page-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-content .container {
  max-width: 900px;
}

.page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.page-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-content li {
  margin-bottom: 10px;
}

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

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==== MEDIA QUERIES ==== */
@media (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-item {
    color: var(--dark-color);
    margin: 10px 0;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .section-header .title {
    font-size: 2rem;
  }
  
  .content h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header .title {
    font-size: 1.8rem;
  }
  
  .button.is-large {
    font-size: 1rem;
    padding: 12px 25px;
  }
  
  .hero .buttons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero .title {
    font-size: 1.8rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .section-header .title {
    font-size: 1.6rem;
  }
  
  .social-icons {
    justify-content: center;
  }
}