:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #0f4c75;
  --accent-light: #3282b8;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5e;
  --text-light: #6b6b7e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --success: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(26, 26, 46, 0.05), 0 1px 3px 0 rgba(26, 26, 46, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(26, 26, 46, 0.08), 0 2px 4px -1px rgba(26, 26, 46, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(26, 26, 46, 0.1), 0 4px 6px -2px rgba(26, 26, 46, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(26, 26, 46, 0.12), 0 10px 10px -5px rgba(26, 26, 46, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 16px;
  background: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3.5rem;
  font-weight: 600;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

.lang-btn {
  font-weight: 600;
  color: var(--text-light);
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--accent);
  background: var(--bg-light);
}

.lang-btn.active {
  color: var(--accent);
  background: var(--bg-light);
}

.lang-divider {
  color: var(--border);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Manrope', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-md), 0 0 0 0 rgba(15, 76, 117, 0.4);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(15, 76, 117, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg), var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 6s ease-in-out infinite;
  max-width: 280px;
}

.floating-card:nth-child(1) {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 25%;
  right: 8%;
  animation-delay: 1s;
}

.floating-card:nth-child(3) {
  bottom: 20%;
  left: 8%;
  animation-delay: 2s;
}

.floating-card:nth-child(4) {
  bottom: 30%;
  right: 5%;
  animation-delay: 3s;
}

.floating-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.floating-card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.floating-card-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

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

.stats-bar {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.9;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

section {
  padding: 6rem 0;
}

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

.section-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-body);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md), 0 0 20px rgba(15, 76, 117, 0.2);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-card p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.625rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-body);
  font-size: 0.9375rem;
}

.service-features li i {
  color: var(--accent);
  font-size: 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-lg);
}

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

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.features-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.feature-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.feature-content p {
  color: var(--text-body);
  margin: 0;
  font-size: 0.9375rem;
}

.process-section {
  background: var(--bg-light);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.process-step {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

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

.process-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md), 0 0 20px rgba(15, 76, 117, 0.3);
}

.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-body);
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cta-action {
  text-align: center;
}

.cta-action .btn-primary {
  background: white;
  color: var(--accent);
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

.cta-action .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}

.cta-action p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-cta {
  background: var(--bg-light);
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 1.5rem;
  margin: 6rem auto;
  max-width: 900px;
}

.contact-cta h2 {
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

.faq-section {
  background: white;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.75rem;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
}

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

.testimonials-slider {
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.author-info p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
}

.contact-section {
  padding: 6rem 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-detail-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

.contact-detail-content p,
.contact-detail-content a {
  color: var(--text-body);
  margin: 0;
  font-size: 0.9375rem;
}

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

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 76, 117, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--accent);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
}

.map-container {
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.offerings-grid {
  display: grid;
  gap: 3rem;
  margin-top: 4rem;
}

.offering-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.offering-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.offering-image {
  height: 100%;
  min-height: 350px;
}

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

.offering-content {
  padding: 3rem 3rem 3rem 0;
}

.offering-content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.offering-content p {
  margin-bottom: 1.5rem;
}

.offering-features {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offering-features li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--text-body);
  font-size: 1rem;
}

.offering-features li i {
  color: var(--accent);
  font-size: 1.125rem;
}

.team-section {
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.team-member {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

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

.team-info {
  padding: 2rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.team-info p {
  color: var(--text-body);
  font-size: 0.9375rem;
  margin: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.resource-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

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

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

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

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

.resource-content {
  padding: 2rem;
}

.resource-category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--bg-light);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}

.resource-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.resource-content p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.resource-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-light);
}

.resource-meta i {
  color: var(--accent);
  margin-right: 0.375rem;
}

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem;
}

.thanks-content {
  max-width: 700px;
}

.thanks-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow-xl), 0 0 40px rgba(16, 185, 129, 0.3);
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.legal-content h1 {
  margin-bottom: 1rem;
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content ul {
  margin: 1.25rem 0 1.25rem 2rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.75rem;
  color: var(--text-body);
  line-height: 1.8;
}

footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0.95;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-column h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--accent);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Manrope', sans-serif;
}

.cookie-accept {
  background: var(--accent);
  color: white;
}

.cookie-accept:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-decline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border);
}

.cookie-decline:hover {
  background: var(--bg-light);
  border-color: var(--accent);
}

.iti {
  width: 100%;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .nav-links {
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .lang-switcher {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .floating-card {
    display: none;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    height: 400px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .offering-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offering-image {
    height: 300px;
    min-height: 300px;
  }

  .offering-content {
    padding: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.625rem;
  }

  .container,
  .container-wide {
    padding: 0 1.25rem;
  }

  nav {
    padding: 1rem 1.25rem;
  }

  .hero {
    padding: 6rem 1.25rem 4rem;
    min-height: 90vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .services-grid,
  .process-steps,
  .team-grid,
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .service-card,
  .process-step {
    padding: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .map-container {
    height: 350px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-content {
    padding: 4rem 1.25rem;
  }

  .legal-content h1 {
    font-size: 2.25rem;
  }

  .legal-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .service-icon,
  .feature-icon,
  .contact-detail-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .process-number {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}