/* Base Variables */
:root {
  --primary-color: #3B82F6; /* Main blue */
  --primary-dark: #2563EB; /* Darker blue for hover effects */
  --secondary-color: #5D9DF6; /* Lighter blue */
  --tertiary-color: #7DBFF8; /* Even lighter blue */
  --accent-color: #F472B6; /* Pink accent */
  --dark-color: #1E293B; /* Dark blue-gray */
  --light-color: #FFFFFF; /* White */
  --background-color: #F0F8FF; /* Very light blue */
  --text-color: #333333; /* Near black for readable text */
  --text-secondary: #555555; /* Gray for secondary text */
  
  /* Glassmorphism properties */
  --glass-background: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(31, 38, 135, 0.1);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
  --radius-circle: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

p {
  margin-bottom: var(--spacing-sm);
}

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

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

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

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

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: var(--spacing-xs) !important;
}

.mb-2 {
  margin-bottom: var(--spacing-sm) !important;
}

.mb-3 {
  margin-bottom: var(--spacing-md) !important;
}

.mb-4 {
  margin-bottom: var(--spacing-lg) !important;
}

.mb-5 {
  margin-bottom: var(--spacing-xl) !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: var(--spacing-xs) !important;
}

.mt-2 {
  margin-top: var(--spacing-sm) !important;
}

.mt-3 {
  margin-top: var(--spacing-md) !important;
}

.mt-4 {
  margin-top: var(--spacing-lg) !important;
}

.mt-5 {
  margin-top: var(--spacing-xl) !important;
}

.py-5 {
  padding-top: var(--spacing-xl) !important;
  padding-bottom: var(--spacing-xl) !important;
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-background);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glassmorphism:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px 0 rgba(31, 38, 135, 0.15);
}

/* Biomorphic Elements */
.biomorphic-button {
  border-radius: 30px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.biomorphic-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.biomorphic-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
  color: white;
}

.biomorphic-button:hover:before {
  opacity: 1;
}

.biomorphic-button:active {
  transform: translateY(1px);
}

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: transparent;
  color: var(--light-color);
}

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

.button.is-light {
  background-color: var(--light-color);
  border-color: transparent;
  color: var(--primary-color);
}

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

.button.is-large {
  font-size: 1.2rem;
  padding: 1.2rem 2rem;
}

/* Header / Navbar */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
  font-weight: 700;
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-item {
  font-weight: 500;
  transition: color var(--transition-normal);
  color: var(--dark-color);
}

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

.navbar-burger {
  height: 3.25rem;
  width: 3.25rem;
}

.navbar-burger span {
  background-color: var(--dark-color);
  height: 2px;
  width: 20px;
}

.navbar-menu {
  animation-duration: 0.3s;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.navbar-menu.is-active {
  display: block;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-background:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-body {
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}

.hero.is-fullheight .hero-body {
  min-height: 100vh;
}

.hero.is-medium .hero-body {
  padding: 9rem 1.5rem 6rem;
}

.hero .title {
  color: var(--light-color);
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .subtitle {
  color: var(--light-color);
  font-size: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}

.hero p {
  color: var(--light-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Methodology Section */
.section {
  padding: 5rem 1.5rem;
}

.section .title.is-2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section .title.is-2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

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

.card-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image figure {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

.card-content p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

/* Accordion */
.accordion-container {
  width: 100%;
  margin-top: 3rem;
}

.accordion {
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-header {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-md);
}

.accordion-button {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

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

.accordion-button .icon {
  font-size: 1.5rem;
  transition: transform var(--transition-normal);
}

.accordion-button.active .icon {
  transform: rotate(45deg);
}

.accordion-content {
  background-color: rgba(255, 255, 255, 0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 1.25rem;
}

.accordion-content p {
  padding: 1.25rem 0;
}

/* Statistics Section */
.stat-card {
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1;
}

.stat-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.progress-container {
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.progress-bar-container {
  height: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin: 10px 0 20px 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--tertiary-color));
  border-radius: 10px;
  transition: width 1.5s ease-in-out;
  text-align: right;
  padding-right: 10px;
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Portfolio Section */
.portfolio-card {
  position: relative;
}

.portfolio-card .tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.tag {
  border-radius: 30px;
  padding: 0.3rem 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
}

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

.tag.is-info {
  background-color: var(--secondary-color);
  color: white;
}

.tag.is-success {
  background-color: var(--tertiary-color);
  color: white;
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Toggle switches */
.toggles-container {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.toggle-option {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 1rem;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.toggle-label {
  font-size: 1rem;
  font-weight: 500;
}

/* Resources Section */
.resource-card {
  text-align: center;
}

.resource-card img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: transform 0.5s ease;
}

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

.resource-card .button {
  width: 100%;
}

/* Read More Links */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  transition: all var(--transition-normal);
  margin-top: 1rem;
}

.read-more:after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform var(--transition-normal);
}

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

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

/* Contact Section */
.contact-info, .contact-info-large {
  padding: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.2rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form, .contact-form-large {
  padding: 2.5rem;
}

.contact-form .label,
.contact-form-large .label {
  color: var(--dark-color);
  font-weight: 500;
}

.contact-form .input,
.contact-form .textarea,
.contact-form-large .input,
.contact-form-large .textarea {
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all var(--transition-normal);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form-large .input:focus,
.contact-form-large .textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.contact-form .button,
.contact-form-large .button {
  margin-top: 1rem;
}

/* Social Links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--text-color);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

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

.social-button {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  color: white;
  font-weight: 500;
  transition: all var(--transition-normal);
  text-align: center;
}

.social-button.facebook {
  background-color: #1877F2;
}

.social-button.twitter {
  background-color: #1DA1F2;
}

.social-button.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Footer */
.footer {
  background-color: #1E3A8A;
  color: white;
  padding: 4rem 1.5rem 2rem;
}

.footer .title {
  color: white;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
  color: white;
}

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

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

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

/* Team Section */
.team-card {
  text-align: center;
}

.team-card .image {
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  width: 200px;
  height: 200px;
}

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

/* Feature Boxes */
.feature-box {
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-container i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Office Cards */
.office-card {
  height: 100%;
}

.office-card img {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Legal Pages */
.legal-content {
  padding: 3rem;
  margin-top: 100px;
}

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

.legal-section h3 {
  margin-bottom: 1.25rem;
}

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

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

/* Success Message */
.success-message {
  padding: 3.5rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon i {
  font-size: 3rem;
  color: white;
}

/* Cookie Notice */
.cookie-notice {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  z-index: 9999;
  padding: 1rem 0;
}

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

.cookie-content p {
  margin: 0;
  padding-right: 1rem;
}

.accept-button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color var(--transition-normal);
  font-weight: 500;
}

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

/* Parallax Sections */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

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

.float {
  animation: float 3s ease-in-out infinite;
}

/* Icons (using data URIs as placeholders) */
[class^="icon-"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-location {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%233B82F6" d="M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z"></path></svg>');
}

.icon-phone {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%233B82F6" d="M493.4 24.6l-104-24c-11.3-2.6-22.9 3.3-27.5 13.9l-48 112c-4.2 9.8-1.4 21.3 6.9 28l60.6 49.6c-36 76.7-98.9 140.5-177.2 177.2l-49.6-60.6c-6.8-8.3-18.2-11.1-28-6.9l-112 48C3.9 366.5-2 378.1.6 389.4l24 104C27.1 504.2 36.7 512 48 512c256.1 0 464-207.5 464-464 0-11.2-7.7-20.9-18.6-23.4z"></path></svg>');
}

.icon-email {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%233B82F6" d="M502.3 190.8c3.9-3.1 9.7-.2 9.7 4.7V400c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V195.6c0-5 5.7-7.8 9.7-4.7 22.4 17.4 52.1 39.5 154.1 113.6 21.1 15.4 56.7 47.8 92.2 47.6 35.7.3 72-32.8 92.3-47.6 102-74.1 131.6-96.3 154-113.7zM256 320c23.2.4 56.6-29.2 73.4-41.4 132.7-96.3 142.8-104.7 173.4-128.7 5.8-4.5 9.2-11.5 9.2-18.9v-19c0-26.5-21.5-48-48-48H48C21.5 64 0 85.5 0 112v19c0 7.4 3.4 14.3 9.2 18.9 30.6 23.9 40.7 32.4 173.4 128.7 16.8 12.2 50.2 41.8 73.4 41.4z"></path></svg>');
}

.icon-clock {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%233B82F6" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm0 448c-110.5 0-200-89.5-200-200S145.5 56 256 56s200 89.5 200 200-89.5 200-200 200zm61.8-104.4l-84.9-61.7c-3.1-2.3-4.9-5.9-4.9-9.7V116c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v141.7l66.8 48.6c5.4 3.9 6.5 11.4 2.6 16.8L334.6 349c-3.9 5.3-11.4 6.5-16.8 2.6z"></path></svg>');
}

.icon-user {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%233B82F6" d="M224 256c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128zm89.6 32h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48v-41.6c0-74.2-60.2-134.4-134.4-134.4z"></path></svg>');
}

.icon-subject {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%233B82F6" d="M128 184c0-30.879 25.122-56 56-56h136V56c0-13.255-10.745-24-24-24h-80.61C204.306 12.89 183.637 0 160 0s-44.306 12.89-55.39 32H24C10.745 32 0 42.745 0 56v336c0 13.255 10.745 24 24 24h104V184zm32-144c13.255 0 24 10.745 24 24s-10.745 24-24 24-24-10.745-24-24 10.745-24 24-24zm184 248h104v200c0 13.255-10.745 24-24 24H184c-13.255 0-24-10.745-24-24V184c0-13.255 10.745-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.059V256h-96v-96h6.059a24 24 0 0 1 16.97 7.029l65.941 65.941a24.002 24.002 0 0 1 7.03 16.971z"></path></svg>');
}

.icon-check {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23FFFFFF" d="M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z"></path></svg>');
}

.icon-experience, .icon-personalization, .icon-innovation {
  width: 40px;
  height: 40px;
}

.icon-experience {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%233B82F6" d="M96 160C42.4 160 0 202.4 0 256s42.4 96 96 96 96-42.4 96-96-42.4-96-96-96zm192 32c-35.3 0-64 28.7-64 64s28.7 64 64 64 64-28.7 64-64-28.7-64-64-64zm224-32c-53.6 0-96 42.4-96 96s42.4 96 96 96 96-42.4 96-96-42.4-96-96-96z"></path></svg>');
}

.icon-personalization {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="%233B82F6" d="M96 224c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm448 0c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64zm32 32h-64c-17.6 0-33.5 7.1-45.1 18.6 40.3 22.1 68.9 62 75.1 109.4h66c17.7 0 32-14.3 32-32v-32c0-35.3-28.7-64-64-64zm-256 0c61.9 0 112-50.1 112-112S381.9 32 320 32 208 82.1 208 144s50.1 112 112 112zm76.8 32h-8.3c-20.8 10-43.9 16-68.5 16s-47.6-6-68.5-16h-8.3C179.6 288 128 339.6 128 403.2V432c0 26.5 21.5 48 48 48h288c26.5 0 48-21.5 48-48v-28.8c0-63.6-51.6-115.2-115.2-115.2zm-223.7-13.4C161.5 263.1 145.6 256 128 256H64c-35.3 0-64 28.7-64 64v32c0 17.7 14.3 32 32 32h65.9c6.3-47.4 34.9-87.3 75.2-109.4z"></path></svg>');
}

.icon-innovation {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="%233B82F6" d="M96.06 454.35c.01 6.29 1.87 12.45 5.36 17.69l17.09 25.69a31.99 31.99 0 0 0 26.64 14.28h61.71a31.99 31.99 0 0 0 26.64-14.28l17.09-25.69a31.989 31.989 0 0 0 5.36-17.69l.04-38.35H96.01l.05 38.35zM0 176c0 44.37 16.45 84.85 43.56 115.78 16.52 18.85 42.36 58.23 52.21 91.45.04.26.07.52.11.78h160.24c.04-.26.07-.51.11-.78 9.85-33.22 35.69-72.6 52.21-91.45C335.55 260.85 352 220.37 352 176 352 78.61 272.91-.3 175.45 0 73.44.31 0 82.97 0 176zm176-80c-44.11 0-80 35.89-80 80 0 8.84-7.16 16-16 16s-16-7.16-16-16c0-61.76 50.24-112 112-112 8.84 0 16 7.16 16 16s-7.16 16-16 16z"></path></svg>');
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .card {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
    padding-right: 0;
  }
  
  .social-large .social-buttons {
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-item i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 1.75rem;
  }
  
  .hero .subtitle {
    font-size: 1rem;
  }
  
  .section .title.is-2 {
    font-size: 1.5rem;
  }
  
  .button.is-large {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}