:root {
  /* Primary Colors */
  --primary-color: #3273dc;
  --primary-dark: #2160c4;
  --primary-light: #4a89dc;
  
  /* Secondary Colors */
  --secondary-color: #23d160;
  --secondary-dark: #1ca14d;
  --secondary-light: #3ede7a;
  
  /* Accent Colors */
  --accent-color: #ff3860;
  --accent-dark: #e03456;
  --accent-light: #ff4d7a;
  
  /* Neutral Colors */
  --dark-color: #222222;
  --dark-medium: #333333;
  --medium-color: #666666;
  --light-medium: #999999;
  --light-color: #f5f5f5;
  
  /* Gradient Colors */
  --gradient-start: #3273dc;
  --gradient-middle: #8e44ad;
  --gradient-end: #ff3860;
  
  /* Biomorphic Design Colors */
  --bio-color-1: #00c4cc;
  --bio-color-2: #7209b7;
  --bio-color-3: #4cc9f0;
  
  /* Shadows */
  --shadow-small: 0 2px 5px rgba(0,0,0,0.1);
  --shadow-medium: 0 5px 15px rgba(0,0,0,0.1);
  --shadow-large: 0 10px 25px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-medium: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --radius-circle: 50%;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-xxxl: 3rem;
}

/* Base Styles */
body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark-medium);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

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

p {
  margin-bottom: 1.5rem;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 5rem 1.5rem;
}

/* Buttons */
.button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-medium);
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-small);
}

.button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.button.is-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
}

.button.is-primary:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
}

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

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

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

.button.is-large {
  font-size: var(--font-size-lg);
  padding: 1rem 2rem;
}

.button.is-fullwidth {
  display: block;
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(10px);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand h1 {
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.navbar-item {
  font-weight: 600;
  transition: var(--transition-fast);
}

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

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

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

.hero-body {
  position: relative;
  z-index: 2;
  padding: 9rem 1.5rem;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero .title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
}

.hero .buttons {
  margin-top: 2rem;
}

/* Statistics Section */
.statistics-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.statistics-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--bio-color-1) 0%, transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
}

.statistics-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--bio-color-2) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
}

.statistic-widget {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.statistic-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.statistic-widget:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.statistic-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.statistic-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.statistic-description {
  color: var(--medium-color);
  font-size: 1rem;
}

/* Products Section */
.products-section {
  background-color: white;
}

.product-card {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

.card-image {
  width: 100%;
  overflow: hidden;
}

.image-container {
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.description {
  color: var(--medium-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Methodology Section */
.methodology-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  position: relative;
}

.methodology-accordion {
  margin-top: 2rem;
}

.methodology-item {
  margin-bottom: 1rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-small);
  background-color: white;
}

.methodology-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: white;
  cursor: pointer;
  transition: var(--transition-fast);
}

.methodology-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.methodology-header:hover {
  background-color: var(--light-color);
}

.methodology-content {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-medium);
  padding: 0 1.5rem;
}

.methodology-item.is-active .methodology-content {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.methodology-image {
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

/* Resources Section */
.resources-section {
  background-color: white;
}

.resource-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}

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

/* Projects Section */
.projects-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.project-card {
  height: 100%;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  display: flex;
  flex-direction: column;
}

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

/* Customer Stories Section */
.customer-stories-section {
  background-color: white;
}

.testimonial-card {
  height: 100%;
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.testimonial-avatar {
  margin: 0 auto 1rem;
  width: 100px;
  height: 100px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  border: 4px solid var(--primary-light);
}

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

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--medium-color);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  position: absolute;
  top: -30px;
  left: -10px;
  color: var(--light-medium);
  opacity: 0.3;
  font-family: serif;
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

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

.blog-date {
  color: var(--light-medium);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  color: var(--medium-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Awards Section */
.awards-section {
  background-color: white;
}

.award-item {
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition-medium);
}

.award-image {
  margin: 0 auto 1.5rem;
  width: 150px;
  height: 150px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

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

/* Partners Section */
.partners-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.partner-item {
  text-align: center;
  padding: 1.5rem;
  transition: var(--transition-medium);
}

.partner-item img {
  max-width: 150px;
  margin: 0 auto;
  transition: var(--transition-medium);
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--bio-color-3) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.contact-info {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  height: 100%;
}

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

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

.contact-item p {
  margin-bottom: 0.5rem;
}

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

.contact-form .field {
  margin-bottom: 1.5rem;
}

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

.contact-form .input,
.contact-form .textarea {
  border-radius: var(--radius-medium);
  border: 2px solid var(--light-medium);
  transition: var(--transition-fast);
  box-shadow: none;
}

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

.map-container {
  margin-top: 3rem;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.footer .title {
  color: white;
  margin-bottom: 1.5rem;
}

.footer p {
  color: var(--light-medium);
  margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
  color: white;
}

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

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

.footer-social a {
  color: var(--light-medium);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: white;
}

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

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

/* Cookie Consent */
#cookie-consent {
  transition: var(--transition-medium);
}

#accept-cookies {
  transition: var(--transition-fast);
}

#accept-cookies:hover {
  background-color: var(--primary-dark);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-large);
}

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

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

.success-message {
  font-size: 1.2rem;
  color: var(--medium-color);
  margin-bottom: 2rem;
}

/* Privacy and Terms Pages */
.content-page {
  padding-top: 100px;
}

.content-container {
  padding: 2rem;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
  
  .statistic-number {
    font-size: 2.5rem;
  }
  
  .statistic-title {
    font-size: 1.25rem;
  }
  
  .contact-info, .contact-form-container {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.25rem;
  }
  
  .statistic-number {
    font-size: 2rem;
  }
  
  .buttons {
    display: flex;
    flex-direction: column;
  }
  
  .buttons .button {
    margin-bottom: 1rem;
  }
}