:root {
  --primary-color: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ff8c5f;
  --secondary-color: #4ecdc4;
  --secondary-dark: #3db8b0;
  --secondary-light: #6fd9d1;
  --accent-color: #ffe66d;
  --accent-dark: #f5dc5a;
  --accent-light: #fff089;
  --success-color: #95e1d3;
  --warning-color: #f38181;
  --info-color: #aa96da;

  --text-dark: #2d3436;
  --text-medium: #636e72;
  --text-light: #b2bec3;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #e8edf2;
  --medium-gray: #dfe6e9;
  --dark-gray: #636e72;

  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--accent-color) 100%
  );
  --gradient-accent: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-light) 100%
  );
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.9) 0%,
    rgba(78, 205, 196, 0.8) 100%
  );

  --shadow-sm: 0 2px 8px rgba(45, 52, 54, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 52, 54, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 52, 54, 0.16);
  --shadow-xl: 0 16px 48px rgba(45, 52, 54, 0.2);
  --shadow-organic:
    0 10px 40px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(78, 205, 196, 0.1);

  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-organic: 60% 40% 30% 70% / 60% 30% 70% 40%;

  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
  font-size: 1.1rem;
}

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

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn,
button:not(.navbar-burger):not(.delete),
input[type="submit"],
.button:not(.delete) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  font-size: 1.1rem;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.btn::before,
.button:not(.delete)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width var(--transition-slow),
    height var(--transition-slow);
}

.btn:hover::before,
.button:not(.delete):hover::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary:hover,
.button.is-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.btn-secondary,
.button.is-secondary {
  background: var(--gradient-secondary);
  color: var(--text-dark);
}

.btn-outline,
.button.is-light {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover,
.button.is-light:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.cta-button,
.cta-button-outline {
  min-width: 200px;
  margin: 0.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.2rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  z-index: 1000;
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-item {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  padding: 0.75rem 1.25rem;
  position: relative;
  transition: all var(--transition-normal);
}

.navbar-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: width var(--transition-normal);
  border-radius: var(--radius-sm);
}

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

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

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

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.7) 0%,
    rgba(78, 205, 196, 0.6) 100%
  );
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: var(--spacing-xxl) var(--spacing-md);
}

.hero-title {
  color: var(--white) !important;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  color: var(--white) !important;
  font-size: 1.4rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: var(--spacing-xl);
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

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

.section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.projects-section {
  background: var(--white);
}

.project-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  background: var(--white);
  display: flex;
  flex-direction: column;
}

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

.project-card .card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.project-card .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.project-card .card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-card .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.project-card .content {
  color: var(--text-medium);
  flex-grow: 1;
  margin-bottom: var(--spacing-md);
}

.tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

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

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

.tag.is-success {
  background: var(--success-color);
  color: var(--text-dark);
}

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

.process-section {
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-gray) 100%
  );
}

.process-steps {
  margin-top: var(--spacing-xl);
}

.process-step {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}

.process-step .title {
  margin-top: var(--spacing-md);
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-medium);
}

.instructors-section {
  background: var(--white);
}

.instructor-card {
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.instructor-card .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.instructor-card .image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.instructor-card .card-content {
  padding: var(--spacing-lg);
}

.instructor-card .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.instructor-card .subtitle {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-md);
}

.gallery-section {
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-gray) 100%
  );
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 300px;
}

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

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

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

.testimonials-section {
  background: var(--white);
}

.testimonial-card {
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  border-left: 4px solid var(--primary-color);
}

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

.testimonial-card .card-content {
  padding: var(--spacing-lg);
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.testimonial-author {
  margin-top: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 2px solid var(--light-gray);
}

.testimonial-author p {
  margin-bottom: 0.25rem;
}

.case-studies-section {
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-gray) 100%
  );
}

.case-study-item {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.case-study-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.case-study-item img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.case-study-item .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.case-study-item p {
  color: var(--text-medium);
}

.behind-scenes-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.behind-content {
  background: rgba(255, 255, 255, 0.95);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.behind-content h3 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-md);
}

.behind-content p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
}

.behind-scenes-section img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.innovation-section {
  background: var(--white);
}

.innovation-card {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-normal);
  height: 100%;
}

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

.innovation-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  filter: grayscale(0%);
  transition: all var(--transition-normal);
}

.innovation-card:hover .innovation-icon {
  transform: scale(1.2) rotate(5deg);
}

.innovation-card .title {
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.innovation-card p {
  color: var(--text-medium);
}

.resources-section {
  background: linear-gradient(
    135deg,
    var(--off-white) 0%,
    var(--light-gray) 100%
  );
}

.resource-card {
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  background: var(--white);
  border-top: 4px solid var(--secondary-color);
}

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

.resource-card .card-content {
  padding: var(--spacing-lg);
}

.resource-card .title a {
  color: var(--text-dark);
  transition: color var(--transition-normal);
}

.resource-card .title a:hover {
  color: var(--primary-color);
}

.resource-card .content {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
}

.resource-card .button {
  margin-top: var(--spacing-sm);
}

.contact-section {
  background: var(--white);
}

.contact-form-wrapper {
  background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field {
  margin-bottom: var(--spacing-lg);
}

.label {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-medium);
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  display: block;
}

.input,
.textarea,
.select select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all var(--transition-normal);
}

.input:focus,
.textarea:focus,
.select select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.select {
  position: relative;
}

.contact-info {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-xl);
  border-top: 2px solid var(--light-gray);
}

.contact-detail {
  margin-bottom: var(--spacing-md);
}

.contact-detail strong {
  color: var(--text-dark);
  font-family: var(--font-heading);
  display: block;
  margin-bottom: var(--spacing-xs);
}

.contact-detail p,
.contact-detail a {
  color: var(--text-medium);
}

.contact-detail a:hover {
  color: var(--primary-color);
}

.footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #1a1d1f 100%);
  color: var(--light-gray);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer .title {
  color: var(--white);
  margin-bottom: var(--spacing-md);
  font-size: 1.3rem;
}

.footer .content {
  color: var(--light-gray);
  line-height: 1.8;
}

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

.footer-links li {
  margin-bottom: var(--spacing-sm);
}

.footer-links a {
  color: var(--light-gray);
  transition: all var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.success-content {
  text-align: center;
  padding: var(--spacing-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 600px;
}

.success-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-content p {
  color: var(--text-medium);
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

.privacy-content,
.terms-content {
  padding-top: 120px;
  padding-bottom: var(--spacing-xxl);
}

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

.privacy-content h1,
.terms-content h1 {
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
}

.privacy-content h2,
.terms-content h2 {
  color: var(--text-dark);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.privacy-content p,
.terms-content p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.privacy-content ul,
.terms-content ul {
  margin-left: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.privacy-content li,
.terms-content li {
  color: var(--text-medium);
  margin-bottom: var(--spacing-xs);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.has-text-centered {
  text-align: center;
}

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

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

.mt-6 {
  margin-top: var(--spacing-xxl);
}

.pt-5 {
  padding-top: var(--spacing-xl);
}

.is-small,
.content.is-small {
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .section {
    padding: var(--spacing-xl) 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-section {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
  }

  .section {
    padding: var(--spacing-lg) 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-step:hover {
    transform: translateY(-5px);
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-form-wrapper {
    padding: var(--spacing-lg);
  }

  .social-links {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .btn,
  .button {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }

  .cta-button,
  .cta-button-outline {
    min-width: 160px;
  }

  .innovation-icon {
    font-size: 3rem;
  }

  .gallery-item {
    height: 250px;
  }
}

.contact-info-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  background: var(--white);
  border-top: 4px solid var(--primary-color);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-organic);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  display: block;
}

.hours-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.hours-row:last-child {
  border-bottom: none;
}

@media print {
  .navbar,
  .footer,
  .contact-section {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    page-break-inside: avoid;
  }
}
