/* Root Variables */
:root {
  /* Primary Color Palette */
  --primary-color: #485fc7;
  --primary-light: #5a6fd6;
  --primary-dark: #364aad;
  --primary-gradient: linear-gradient(135deg, #485fc7, #364aad);
  
  /* Monochromatic Shades */
  --primary-lightest: #eceefb;
  --primary-lighter: #c5cdf2;
  --primary-light-hover: #6a7ed9;
  --primary-dark-hover: #2d3e94;
  --primary-darkest: #1c2659;
  
  /* Neutral Colors */
  --neutral-100: #ffffff;
  --neutral-200: #f5f5f7;
  --neutral-300: #e1e1e6;
  --neutral-400: #b3b3b8;
  --neutral-500: #8e8e96;
  --neutral-600: #6b6b74;
  --neutral-700: #484851;
  --neutral-800: #2d2d33;
  --neutral-900: #1a1a1f;
  
  /* Accent Colors */
  --success-color: #48c78e;
  --warning-color: #ffd257;
  --danger-color: #f14668;
  --info-color: #3e8ed0;
  
  /* Typography */
  --font-heading: 'Inter', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  /* Neomorphic Shadows */
  --nm-shadow-small: 5px 5px 10px rgba(0, 0, 0, 0.1), -5px -5px 10px rgba(255, 255, 255, 0.8);
  --nm-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.8);
  --nm-shadow-large: 15px 15px 30px rgba(0, 0, 0, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.8);
  --nm-shadow-inset: inset 5px 5px 10px rgba(0, 0, 0, 0.1), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background-color: var(--neutral-200);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.3;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

.image-container {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow-small);
  margin-bottom: var(--space-md);
  transition: transform var(--transition-normal) var(--transition-bounce);
}

.image-container:hover {
  transform: scale(1.02);
}

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

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

/* Typography Enhancements */
.title {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.title.is-1 {
  font-size: 3rem;
  font-weight: 800;
}

.title.is-2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.title.is-2:after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
}

.has-text-centered .title.is-2:after {
  left: 50%;
  transform: translateX(-50%);
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--neutral-600);
  margin-bottom: 2rem;
}

/* Button Styles */
.button, button, input[type="submit"] {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--transition-bounce);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--transition-bounce);
}

.button:hover:before {
  transform: translateX(0);
}

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

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(72, 95, 199, 0.5);
}

.button.is-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(72, 95, 199, 0.3);
}

.button.is-light {
  background: var(--neutral-100);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.button.is-light:hover {
  background: var(--neutral-200);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.15);
}

.button.is-light:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.button.is-light.is-outlined {
  color: white;
  border-color: white;
}

.button.is-light.is-outlined:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button.is-large {
  font-size: 1.1rem;
  height: 3.5rem;
  padding: 0 2rem;
}

.buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Layout */
.section {
  padding: 5rem 1.5rem;
  position: relative;
}

.section:nth-child(even) {
  background-color: var(--neutral-100);
}

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

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.navbar-item {
  color: var(--neutral-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: all 0.3s var(--transition-bounce);
  transform: translateX(-50%);
}

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

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

.navbar-burger {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

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

.hero .title, 
.hero .subtitle, 
.hero p {
  color: white !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .title.is-1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
  max-width: 800px;
  animation: fadeInUp 1s var(--transition-bounce) both;
}

.hero .subtitle.is-3 {
  margin-bottom: 2rem;
  font-size: 2rem;
  max-width: 700px;
  animation: fadeInUp 1s var(--transition-bounce) 0.2s both;
}

.hero p {
  max-width: 600px;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1s var(--transition-bounce) 0.4s both;
}

.hero .buttons {
  animation: fadeInUp 1s var(--transition-bounce) 0.6s both;
}

.scroll-down-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 50px;
  transition: all var(--transition-normal);
  animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.scroll-down-btn .icon {
  font-size: 1.5rem;
}

/* About Section */
.about-section {
  background-color: var(--neutral-100);
}

.about-section .image-container {
  height: 400px;
  width: 100%;
  margin-bottom: var(--space-md);
}

.about-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-container {
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--neutral-100);
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow-small);
  transition: transform var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-10px);
}

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

/* Process Section */
.process-section {
  background-color: var(--neutral-200);
}

.process-timeline {
  position: relative;
  margin-top: 3rem;
}

.process-card {
  background: var(--neutral-100);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow);
  margin-bottom: 2rem;
  transition: transform var(--transition-normal) var(--transition-bounce);
  position: relative;
  z-index: 1;
}

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

.process-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-lightest);
  position: absolute;
  top: -1.5rem;
  right: 1rem;
  z-index: -1;
  line-height: 1;
}

.process-card .title {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-card .image-container {
  height: 250px;
  width: 100%;
  margin-top: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-100);
}

.gallery-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal) var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.gallery-card .card-image {
  overflow: hidden;
  width: 100%;
  height: 250px;
}

.gallery-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.gallery-card .title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--neutral-200);
}

.testimonial-card {
  height: 100%;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal) var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.testimonial-card .media {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
}

.testimonial-card .media-left {
  margin-right: 1rem;
}

.testimonial-card .image {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-lighter);
}

.testimonial-card .media-content {
  flex-grow: 1;
}

.testimonial-card .title {
  margin-bottom: 0.25rem;
}

.testimonial-card .content {
  text-align: center;
}

.testimonial-card .stars {
  color: var(--warning-color);
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* Success Stories Section */
.success-stories-section {
  background-color: var(--neutral-100);
}

.success-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal) var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.success-card .card-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.success-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.success-card .card-content {
  padding: 2rem;
  flex-grow: 1;
  text-align: center;
}

.success-card .title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.success-card .button {
  margin-top: 1.5rem;
}

/* Resources Section */
.resources-section {
  background-color: var(--neutral-200);
}

.resource-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal) var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.resource-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.resource-card .title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Insights Section */
.insights-section {
  background-color: var(--neutral-100);
}

.insight-card {
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  box-shadow: var(--nm-shadow);
  height: 100%;
  transition: transform var(--transition-normal);
}

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

.insight-card .title {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.insight-image {
  margin-top: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow-large);
}

.insight-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Media Section */
.media-section {
  background-color: var(--neutral-200);
}

.media-card {
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal) var(--transition-bounce);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.media-card .card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.media-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

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

.media-card .title {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.media-card .tag {
  margin-top: 1rem;
  background: var(--primary-lightest);
  color: var(--primary-dark);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--neutral-100);
}

.pricing-card {
  height: 100%;
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--nm-shadow);
  transition: transform var(--transition-normal) var(--transition-bounce);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.pricing-card.featured:hover {
  transform: scale(1.1);
}

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

.pricing-card .card-content {
  padding: 2rem;
  width: 100%;
  text-align: center;
}

.pricing-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-300);
}

.pricing-header .title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.pricing-header .subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-800);
  margin-bottom: 0.5rem;
}

.pricing-header .duration {
  color: var(--neutral-500);
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

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

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pricing-cta {
  margin-top: auto;
  width: 100%;
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background: var(--primary-gradient);
  color: white;
  padding: 0.25rem 3rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.payment-info {
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--primary-lightest);
  border-radius: var(--radius-md);
  text-align: center;
}

.payment-info .title {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: var(--neutral-200);
}

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

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

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

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

.contact-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.contact-form-container {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--nm-shadow);
}

.contact-form .label {
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  background-color: var(--neutral-200);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--nm-shadow-inset);
  transition: all var(--transition-normal);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  outline: none;
  box-shadow: var(--nm-shadow-inset), 0 0 0 2px var(--primary-lighter);
}

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

.contact-form .checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.contact-form .checkbox input {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 5rem 1.5rem 2rem;
  position: relative;
}

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

.footer p {
  margin-bottom: 1.5rem;
}

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

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

.footer ul li a {
  color: var(--neutral-400);
  transition: color var(--transition-fast);
}

.footer ul li a:hover {
  color: white;
}

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

.social-links a {
  color: var(--neutral-400);
  transition: all var(--transition-normal);
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
}

.social-links a:hover {
  color: white;
  transform: translateY(-3px);
}

.copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--neutral-500);
  font-size: 0.9rem;
}

/* 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(--success-color);
  margin-bottom: 2rem;
}

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

.privacy-content, .terms-content {
  background-color: var(--neutral-100);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--nm-shadow);
}

/* Cookie Consent */
#cookieConsent {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

#acceptCookies {
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--transition-bounce);
}

#acceptCookies:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(72, 95, 199, 0.4);
}

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

.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);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Responsive Styles */
@media screen and (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-item {
    padding: 1rem;
    display: block;
    text-align: center;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .button {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .columns {
    margin: 0;
  }
  
  .column {
    padding: 0.75rem;
  }
  
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.5rem;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 4rem 1rem;
  }
  
  .hero .title.is-1 {
    font-size: 2rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .title.is-2 {
    font-size: 1.75rem;
  }
  
  .contact-form-container {
    margin-top: 3rem;
  }
  .navbar-brand{
    width: 100%;
  }
}

