/* 
 * Datavestkz - Main Styles
 * Industrial Minimalist Design with Hero-dominated Layout
 * Colors: Dark Slate Gray (#2F4550), Concrete Gray (#586F7C), Rust Orange (#B8621B), Steel Blue (#4B86B4)
 */

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 10px base for easier rem calculations */
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #2F4550;
  background-color: #F4F4F4;
  overflow-x: hidden;
}

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

a {
  color: #4B86B4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: #B8621B;
  text-decoration: underline;
}

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #2F4550;
}

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 0.4rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background-color: #B8621B;
  color: #FFFFFF;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #A45517;
  color: #FFFFFF;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #2F4550;
  border: 1px solid #2F4550;
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: rgba(47, 69, 80, 0.1);
  color: #2F4550;
  text-decoration: none;
}

.btn-text {
  background-color: transparent;
  color: #4B86B4;
  padding: 0.8rem 1.2rem;
}

.btn-text:hover, .btn-text:focus {
  color: #B8621B;
  background-color: transparent;
  text-decoration: none;
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-content {
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  overflow-y: auto;
}

.modal-content {
  background-color: #FFFFFF;
  margin: 10vh auto;
  padding: 2rem;
  border-radius: 0.4rem;
  max-width: 600px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.4rem;
  cursor: pointer;
  color: #586F7C;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #EEE;
}

.cookie-option h4 {
  margin-bottom: 0.5rem;
}

.cookie-option p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #586F7C;
  max-width: 400px;
}

.switch-container {
  min-width: 60px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  background-color: #CCC;
  border-radius: 13px;
  transition: all 0.3s;
  cursor: pointer;
}

.switch::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s;
}

input[type="checkbox"]:checked + .switch {
  background-color: #4CAF50;
}

input[type="checkbox"]:checked + .switch::after {
  left: 26px;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:disabled + .switch {
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  margin-top: 2rem;
  text-align: right;
}

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 5rem;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.5rem;
}

#consent {
  display: block;
}

.nav-links a {
  color: #2F4550;
  font-weight: 500;
  text-decoration: none;
  padding: 0.8rem 0;
  position: relative;
  font-size: 0.75em;
}

.nav-links a:hover, .nav-links a:focus, .nav-links a.active {
  color: #B8621B;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #B8621B;
  transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a:focus::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2F4550;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: flex;
  min-height: calc(100vh - 8rem);
  background-color: #FFFFFF;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  padding: 8rem 4rem 8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 4.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-content p {
  font-size: 1.8rem;
  color: #586F7C;
  margin-bottom: 3rem;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

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

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

/* Section Styles */
section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-line {
  width: 6rem;
  height: 0.4rem;
  background-color: #B8621B;
  margin: 2rem auto;
}

.page-header {
  background-color: #2F4550;
  color: #FFFFFF;
  padding: 6rem 0;
  text-align: center;
}

.page-header h1, .page-header p {
  color: #FFFFFF;
}

/* About Section */
.about {
  background-color: #FFFFFF;
}

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

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Key Areas Section */
.key-areas {
  background-color: #F4F4F4;
}

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

.area-card {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 0.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-icon {
  font-size: 3rem;
  color: #B8621B;
  margin-bottom: 2rem;
}

/* Statistics Section */
.statistics {
  background-color: #2F4550;
  color: #FFFFFF;
}

.statistics .section-header h2 {
  color: #FFFFFF;
}

.statistics .section-line {
  background-color: #FFFFFF;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #B8621B;
}

.stat-item p {
  font-size: 1.8rem;
  color: #FFFFFF;
}

/* Sustainable Practices Section */
.sustainable-practices {
  background-color: #FFFFFF;
}

.practices-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.practices-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practices-text {
  flex: 1;
}

.practice-item {
  margin-bottom: 3rem;
}

.practice-item h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #B8621B;
}

.practice-item i {
  font-size: 2rem;
}

/* Eco Transition Section */
.eco-transition {
  background-color: #F4F4F4;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  width: 2px;
  background-color: #586F7C;
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 5rem;
}

.timeline-dot {
  position: absolute;
  left: 44px;
  top: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #B8621B;
  border: 3px solid #FFFFFF;
}

.timeline-date {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #586F7C;
}

.timeline-content {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Contact Form Section */
.contact-form {
  background-color: #FFFFFF;
}

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

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  flex: 1;
  margin-bottom: 2rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

input, textarea, select {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #DDD;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  border-color: #4B86B4;
  outline: none;
}

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

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

.checkbox-group label {
  margin-bottom: 0;
}

/* Footer */
footer {
  background-color: #333333;
  color: #FFFFFF;
  padding: 5rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 5rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  flex: 2;
  display: flex;
  gap: 4rem;
}

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #B8621B;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: #AAAAAA;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover, .footer-column a:focus {
  color: #FFFFFF;
}

.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-contact h4 {
  color: #FFFFFF;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #B8621B;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-contact i {
  color: #B8621B;
  font-size: 1.8rem;
  margin-top: 0.3rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #AAAAAA;
}

/* Team Page Styles */
.team-intro {
  background-color: #FFFFFF;
}

.team-intro-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.team-intro-text {
  flex: 1;
}

.team-intro-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.research-directions {
  background-color: #F4F4F4;
}

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

.research-area {
  background-color: #FFFFFF;
  padding: 3rem;
  border-radius: 0.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.research-icon {
  font-size: 3rem;
  color: #B8621B;
  margin-bottom: 2rem;
}

.expertise-areas {
  background-color: #FFFFFF;
}

.expertise-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.expertise-text {
  flex: 1;
}

.expertise-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-group {
  margin-bottom: 3rem;
}

.publications {
  background-color: #F4F4F4;
}

.publications-list {
  max-width: 800px;
  margin: 0 auto;
}

.publication-item {
  display: flex;
  margin-bottom: 3rem;
  background-color: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.publication-year {
  background-color: #B8621B;
  color: #FFFFFF;
  padding: 2rem;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.publication-content {
  padding: 2rem;
}

.international-cooperation {
  background-color: #FFFFFF;
}

.cooperation-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

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

.partner {
  background-color: #F4F4F4;
  padding: 3rem;
  border-radius: 0.4rem;
}

.partner h3 {
  margin-bottom: 1.5rem;
  color: #B8621B;
}

.partner ul {
  list-style-type: none;
}

.partner li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.partner li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B8621B;
}

/* Analytics Page Styles */
.analytics-intro {
  background-color: #FFFFFF;
}

.analytics-intro-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.analytics-intro-text {
  flex: 1;
}

.analytics-intro-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.analytics-reports {
  background-color: #F4F4F4;
}

.reports-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.report-item {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.report-image {
  flex: 1;
  min-width: 300px;
  max-width: 300px;
}

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

.report-content {
  flex: 2;
  padding: 3rem;
}

.report-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: #586F7C;
  font-size: 1.4rem;
}

.report-highlights {
  background-color: #F4F4F4;
  padding: 1.5rem;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.report-highlights h4 {
  margin-bottom: 1rem;
}

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

.report-highlights li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.report-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B8621B;
}

.case-studies {
  background-color: #FFFFFF;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.case-study {
  background-color: #F4F4F4;
  padding: 3rem;
  border-radius: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study h3 {
  color: #B8621B;
  margin-bottom: 1.5rem;
}

.case-results {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.case-results h4 {
  margin-bottom: 1rem;
}

.case-results ul {
  list-style-type: none;
}

.case-results li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.case-results li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B8621B;
}

.methodologies {
  background-color: #F4F4F4;
}

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

.methodology-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methodology-text {
  flex: 1;
}

.methodology-item {
  margin-bottom: 2rem;
}

.methodology-item h3 {
  color: #B8621B;
  margin-bottom: 1rem;
}

/* Programs Page Styles */
.programs-intro {
  background-color: #FFFFFF;
}

.programs-intro-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.programs-intro-text {
  flex: 1;
}

.programs-intro-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategic-programs {
  background-color: #F4F4F4;
}

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.program-item {
  background-color: #FFFFFF;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.program-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: #2F4550;
  color: #FFFFFF;
}

.program-icon {
  font-size: 3rem;
  color: #B8621B;
}

.program-header h3 {
  color: #FFFFFF;
  margin-bottom: 0;
}

.program-content {
  padding: 3rem;
}

.program-description {
  margin-bottom: 2rem;
}

.program-description ul {
  list-style-type: none;
  margin: 2rem 0;
}

.program-description li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.program-description li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B8621B;
}

.program-goals {
  background-color: #F4F4F4;
  padding: 2rem;
  border-radius: 0.4rem;
}

.program-goals h4 {
  margin-bottom: 1.5rem;
  color: #2F4550;
}

.program-goals ul {
  list-style-type: none;
}

.program-goals li {
  margin-bottom: 0.8rem;
  padding-left: 2rem;
  position: relative;
}

.program-goals li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B8621B;
}

.implementation-mechanisms {
  background-color: #FFFFFF;
}

.mechanisms-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.mechanisms-image {
  flex: 1;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mechanisms-text {
  flex: 1;
}

.mechanism-item {
  margin-bottom: 2rem;
}

.mechanism-item h3 {
  color: #B8621B;
  margin-bottom: 1rem;
}

.international-context {
  background-color: #F4F4F4;
}

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

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

.aspect {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.aspect h3 {
  color: #B8621B;
  margin-bottom: 1.5rem;
}

/* Contacts Page Styles */
.contact-info {
  background-color: #FFFFFF;
}

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

.contact-card {
  background-color: #F4F4F4;
  padding: 3rem;
  border-radius: 0.4rem;
  text-align: center;
  min-width: 250px;
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 3rem;
  color: #B8621B;
  margin-bottom: 1.5rem;
}

.contact-card h3 {
  margin-bottom: 1.5rem;
}

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

.contact-map {
  background-color: #F4F4F4;
}

.map-container {
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cooperation {
  background-color: #FFFFFF;
}

.cooperation-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
}

.cooperation-option {
  text-align: center;
  padding: 3rem;
  background-color: #F4F4F4;
  border-radius: 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cooperation-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.option-icon {
  font-size: 3rem;
  color: #B8621B;
  margin-bottom: 1.5rem;
}

/* Thanks Page Styles */
.thanks-section {
  min-height: calc(100vh - 40rem);
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
}

.thanks-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 8rem;
  color: #4CAF50;
  margin-bottom: 2rem;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* Legal Pages Styles */
.legal-content {
  background-color: #FFFFFF;
  padding: 5rem 0;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
}

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

.legal-section h2 {
  color: #2F4550;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EEE;
}

.legal-section h3 {
  color: #586F7C;
  margin: 2rem 0 1.5rem;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
  html {
    font-size: 58%;
  }
  
  .hero {
    flex-direction: column;
  }
  
  .hero-content {
    padding: 6rem 2rem;
  }
  
  .hero-image {
    height: 50vh;
  }
  
  .about-content, 
  .practices-content, 
  .team-intro-content, 
  .expertise-content, 
  .analytics-intro-content, 
  .methodology-content, 
  .programs-intro-content, 
  .mechanisms-content {
    flex-direction: column;
  }
  
  .report-item {
    flex-direction: column;
  }
  
  .report-image {
    max-width: none;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .header-container {
    height: 7rem;
  }
  
  .nav-links {
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 99;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-links li {
    margin: 1.5rem 0;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .timeline-dot {
    left: 14px;
  }
  
  .timeline-date {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 55%;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  section {
    padding: 5rem 0;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .stats-container {
    flex-direction: column;
  }
  
  .contact-grid {
    flex-direction: column;
  }
}

/* intl-tel-input Custom Styles */
.iti {
  width: 100%;
}

.iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
  }
}