/* Основные переменные и сброс стилей */
:root {
  /* Цветовая схема */
  --primary: #3273dc;
  --primary-dark: #206bcb;
  --primary-light: #4a89e8;
  --secondary: #00d1b2;
  --secondary-dark: #00b89c;
  --secondary-light: #00e7c5;
  --accent: #ff3860;
  --accent-dark: #ff1443;
  --accent-light: #ff5c7c;
  
  /* Нейтральные цвета */
  --white: #ffffff;
  --off-white: #f5f5f5;
  --light-gray: #e0e0e0;
  --medium-gray: #9e9e9e;
  --dark-gray: #424242;
  --black: #212121;
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--accent-dark));
  
  /* Тени */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.16);
  
  /* Закругления */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Анимации */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Шрифты */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Размеры шрифта */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  
  /* Z-индексы */
  --z-negative: -1;
  --z-normal: 0;
  --z-dropdown: 100;
  --z-fixed: 200;
  --z-modal: 300;
}

/* Базовые стили */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

/* Глобальные стили кнопок */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--text-base);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

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

.button.is-light:hover {
  background-color: var(--off-white);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid currentColor;
}

.button.is-medium {
  font-size: var(--text-lg);
  padding: 0.75rem 1.75rem;
}

.button.is-rounded {
  border-radius: var(--radius-full);
}

/* Контейнеры изображений */
.image-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  z-index: var(--z-fixed);
  padding: 1rem 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

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

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

.navbar-menu {
  display: flex;
  flex-direction: row;
}

.navbar-item {
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.navbar-item:hover {
  color: var(--primary);
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 3.25rem;
  height: 3.25rem;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .navbar-burger {
    display: block;
  }
  
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    padding: 1rem 0;
  }
  
  .navbar-menu.is-active {
    display: flex;
  }
  
  .navbar-end {
    flex-direction: column;
    width: 100%;
  }
  
  .navbar-item {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
  z-index: var(--z-negative);
}

.hero-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 1.5rem;
  position: relative;
  z-index: 1;
}

.hero-foot {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
}

.scroll-down-arrow {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--white);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Methodology Section */
.methodology-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.methodology-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.methodology-card .card-image {
  height: 250px;
  width: 100%;
}

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

.methodology-card .card-content {
  flex: 1;
  padding: 1.5rem;
}

.progress-indicator {
  margin-top: 1rem;
  height: 4px;
  background-color: var(--light-gray);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--primary);
  width: 0;
  transition: width 1s ease;
}

.methodology-timeline {
  margin-top: 3rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
}

.methodology-timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  z-index: 0;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  margin: 0 auto 1rem;
  border: 3px solid var(--white);
}

.timeline-content {
  padding: 0 0.5rem;
}

.timeline-content p {
  margin: 0;
}

.timeline-content .title {
  font-size: var(--text-lg);
  margin-bottom: 0.25rem;
}

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

.statistics-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.statistics-card .card-content {
  padding: 1.5rem;
}

.chart-container {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-container img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* Case Studies Section */
.case-studies-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.case-study-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.case-study-card .card-image {
  height: 300px;
}

.case-study-card .image-container {
  height: 100%;
}

.case-study-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.case-study-card .card-content {
  padding: 1.5rem;
}

.case-study-metrics {
  display: flex;
  justify-content: space-around;
  margin-top: 1.5rem;
  text-align: center;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric .value {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--primary);
}

.metric .label {
  font-size: var(--text-sm);
  color: var(--medium-gray);
}

.case-studies-carousel {
  position: relative;
  margin: 2rem 0;
}

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

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.prev-btn {
  left: 1rem;
}

.next-btn {
  right: 1rem;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--light-gray);
  margin: 0 5px;
  cursor: pointer;
}

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

/* Resources Section */
.resources-section {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.resource-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.resource-card .card-image {
  height: 200px;
}

.resource-card .image-container {
  height: 100%;
}

.resource-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Pricing Section */
.pricing-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.pricing-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  transform: scale(1.05);
  border: 2px solid var(--primary);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-tag {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-bottom-left-radius: var(--radius-md);
  font-weight: 600;
}

.pricing-card .card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  background-color: var(--off-white);
  position: relative;
}

.pricing-card .card-image {
  height: 180px;
  overflow: hidden;
}

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

.pricing-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.price-tag {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-tag .price {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--primary);
}

.price-tag .period {
  font-size: var(--text-base);
  color: var(--medium-gray);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.pricing-features li i {
  margin-right: 0.5rem;
}

.pricing-features li .fa-check {
  color: var(--secondary);
}

.pricing-features li .fa-times {
  color: var(--medium-gray);
}

/* News Section */
.news-section {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.news-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

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

.news-card .card-image {
  height: 200px;
}

.news-card .image-container {
  height: 100%;
}

.news-card .card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  color: var(--medium-gray);
}

.news-card .title {
  margin-bottom: 1rem;
}

.news-card .button {
  align-self: flex-start;
}

/* Partners Section */
.partners-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partner-item {
  text-align: center;
  transition: transform var(--transition-normal);
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.partner-item:hover img {
  filter: grayscale(0%);
}

.partner-item p {
  font-weight: 600;
  color: var(--dark-gray);
}

/* Sustainability Section */
.sustainability-section {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

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

.sustainability-image img {
  width: 100%;
  height: auto;
  display: block;
}

.sustainability-content {
  padding: 0 1.5rem;
}

.sustainability-initiatives {
  margin-top: 2rem;
}

.initiative-item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.initiative-item i {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.initiative-item h4 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}

/* Media Section */
.media-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.media-slider {
  margin: 3rem 0;
}

.media-slide {
  padding: 0 1rem;
}

.media-quote {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.quote-image {
  flex-shrink: 0;
  margin-right: 2rem;
}

.quote-image img {
  width: 100px;
  height: auto;
}

.quote-content {
  flex: 1;
}

.quote-content p {
  font-style: italic;
  margin-bottom: 1rem;
}

.quote-content cite {
  font-weight: 600;
}

.media-coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.media-coverage-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-color: var(--white);
  transition: transform var(--transition-normal);
}

.media-coverage-item:hover {
  transform: translateY(-5px);
}

.media-coverage-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.coverage-info {
  padding: 1.5rem;
}

.coverage-info h4 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
}

/* Press Section */
.press-section {
  padding: 5rem 1.5rem;
  background-color: var(--off-white);
}

.press-releases {
  margin: 3rem 0;
}

.press-release-item {
  display: flex;
  margin-bottom: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.release-date {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  min-width: 100px;
}

.release-date .day {
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.release-date .month {
  font-size: var(--text-lg);
}

.release-content {
  flex: 1;
  padding: 1.5rem 2rem;
}

.release-content h3 {
  margin-bottom: 1rem;
}

.release-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.press-contact {
  text-align: center;
}

.contact-card {
  display: flex;
  align-items: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 500px;
}

.contact-avatar {
  flex-shrink: 0;
  margin-right: 2rem;
}

.contact-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-info {
  flex: 1;
  text-align: left;
}

.contact-info h4 {
  font-size: var(--text-xl);
  margin-bottom: 0.25rem;
}

.contact-info .position {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-info p i {
  margin-right: 0.5rem;
  color: var(--primary);
}

/* Contact Section */
.contact-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.contact-info-container {
  padding: 2rem;
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  height: 100%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 2rem;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1.5rem;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-map img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form-container {
  padding: 2rem;
  background-color: var(--off-white);
  border-radius: var(--radius-lg);
  height: 100%;
}

.field {
  margin-bottom: 1.5rem;
}

.label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.input,
.textarea,
.select select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: border-color var(--transition-fast);
}

.input:focus,
.textarea:focus,
.select select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(50, 115, 220, 0.25);
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.footer {
  background-color: black!important;
  color: var(--white);
  padding: 5rem 1.5rem 2rem;
}

.footer-branding p {
  margin-top: 1rem;
  color: var(--light-gray);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--primary-light);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.newsletter-form {
  margin-top: 1.5rem;
}

.field.has-addons {
  display: flex;
}

.field.has-addons .control.is-expanded {
  flex: 1;
}

.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:first-child:not(:only-child) .button,
.field.has-addons .control:first-child:not(:only-child) .input {
  border-radius: 0;
}

.field.has-addons .control:first-child:not(:only-child) .button,
.field.has-addons .control:first-child:not(:only-child) .input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.field.has-addons .control:last-child:not(:only-child) .button,
.field.has-addons .control:last-child:not(:only-child) .input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

.modal.is-active {
  display: flex;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 4rem);
  overflow: auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.modal-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.modal-card-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  margin: 0;
}

.modal-card-body {
  padding: 2rem 1.5rem;
}

.delete {
  background-color: var(--medium-gray);
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
}

.delete::before,
.delete::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: var(--white);
}

.delete::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.delete::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 3rem;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Utility Classes */
.has-text-centered {
  text-align: center !important;
}

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

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.is-fullwidth {
  width: 100% !important;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .title.is-2 {
    font-size: 2rem;
  }
  
  .hero-body {
    padding: 6rem 1rem 4rem;
  }
  
  .methodology-timeline {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .methodology-timeline::before {
    top: 0;
    bottom: 0;
    left: 10px;
    width: 2px;
    height: 100%;
  }
  
  .timeline-item {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 30px;
  }
  
  .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .press-release-item {
    flex-direction: column;
  }
  
  .release-date {
    padding: 1rem;
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .release-date .day {
    margin-right: 0.5rem;
  }
  
  .contact-info-container, .contact-form-container {
    margin-bottom: 2rem;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-avatar {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .contact-info {
    text-align: center;
  }
}

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

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

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s forwards;
}

.slide-up {
  animation: slideUp 0.8s forwards;
}

.scale-in {
  animation: scaleIn 0.5s forwards;
}

/* Scroll-based Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}