/* Base Styles */
:root {
  --fc-primary: #1E3A8A;
  --fc-secondary: #0EA5E9;
  --fc-accent: #F59E0B;
  --fc-text: #0F172A;
  --fc-text-light: #64748B;
  --fc-background: #F8FAFC;
  --fc-background-light: #FFFFFF;
  --fc-error: #EF4444;
  --fc-success: #10B981;
  --fc-border: #E2E8F0;
  --fc-transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rubik', sans-serif;
  color: var(--fc-text);
  background-color: var(--fc-background);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5rem;
}

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

a:hover {
  color: var(--fc-secondary);
}

/* Custom Utility Classes */
.fc-wrapper {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fc-grid {
  display: grid;
  gap: 2rem;
}

.fc-flex {
  display: flex;
  gap: 1rem;
}

.fc-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--fc-transition);
}

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

.fc-button-primary:hover {
  background-color: #152b6a;
  color: white;
}

.fc-button-secondary {
  background-color: var(--fc-secondary);
  color: white;
}

.fc-button-secondary:hover {
  background-color: #0891ce;
  color: white;
}

.fc-button-outline {
  background-color: transparent;
  border: 2px solid var(--fc-primary);
  color: var(--fc-primary);
}

.fc-button-outline:hover {
  background-color: var(--fc-primary);
  color: white;
}

/* Header Styles */
.fc-header {
  background-color: var(--fc-background-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.fc-logo {
  width: 180px;
  height: auto;
}

.fc-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.fc-nav-link {
  font-weight: 500;
  position: relative;
}

.fc-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--fc-accent);
  transition: var(--fc-transition);
}

.fc-nav-link:hover::after,
.fc-nav-link.fc-active::after {
  width: 100%;
}

.fc-nav-cta {
  margin-left: 1rem;
}

.fc-mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--fc-text);
}

/* Spotlight Section */
.fc-spotlight {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.fc-spotlight-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.fc-spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
  z-index: -1;
}

.fc-spotlight-content {
  color: white;
  max-width: 650px;
  position: relative;
  z-index: 1;
}

.fc-spotlight-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.fc-spotlight-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.fc-spotlight-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Section Styles */
.fc-section {
  padding: 5rem 0;
}

.fc-section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.fc-section-subtitle {
  font-size: 1.125rem;
  color: var(--fc-text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Offerings Section */
.fc-offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fc-offering-card {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--fc-transition);
}

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

.fc-offering-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fc-offering-content {
  padding: 1.5rem;
}

.fc-offering-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fc-offering-format {
  display: inline-block;
  background-color: var(--fc-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.fc-offering-description {
  color: var(--fc-text-light);
  margin-bottom: 1rem;
}

.fc-offering-details {
  display: flex;
  justify-content: space-between;
  color: var(--fc-text-light);
  font-size: 0.875rem;
}

/* Benefits Section */
.fc-benefits {
  background-color: var(--fc-primary);
  color: white;
}

.fc-benefits .fc-section-title,
.fc-benefits .fc-section-subtitle {
  color: white;
}

.fc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fc-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fc-benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--fc-accent);
}

.fc-benefit-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fc-benefit-description {
  font-size: 1rem;
  opacity: 0.9;
}

/* Process Section */
.fc-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fc-process-step {
  position: relative;
  padding: 2rem;
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.fc-process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--fc-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.fc-process-title {
  font-size: 1.25rem;
  margin: 1rem 0;
}

.fc-process-description {
  color: var(--fc-text-light);
}

/* Popular Courses Section */
.fc-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fc-course-card {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--fc-transition);
  display: flex;
  flex-direction: column;
}

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

.fc-course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.fc-course-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fc-course-description {
  color: var(--fc-text-light);
  margin-bottom: 1rem;
  flex-grow: 1;
}

.fc-course-details {
  display: flex;
  justify-content: space-between;
  color: var(--fc-text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.fc-course-footer {
  margin-top: auto;
}

/* Contact Form Section */
.fc-contact-section {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.fc-contact-info {
  padding: 2rem;
}

.fc-contact-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fc-contact-description {
  color: var(--fc-text-light);
  margin-bottom: 2rem;
}

.fc-contact-details {
  margin-bottom: 2rem;
}

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

.fc-contact-icon {
  font-size: 1.25rem;
  color: var(--fc-primary);
  margin-right: 0.75rem;
}

.fc-contact-form {
  padding: 2rem;
  background-color: var(--fc-primary);
  color: white;
}

.fc-form-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.fc-form-group {
  margin-bottom: 1.5rem;
}

.fc-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.fc-form-input,
.fc-form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--fc-border);
  color: var(--fc-primary);
  border-radius: 0.375rem;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}

.fc-form-input:focus,
.fc-form-textarea:focus {
  outline: none;
  border-color: var(--fc-accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.fc-form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.fc-form-checkbox input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.fc-form-checkbox a {
  color: white;
}

.fc-form-submit {
  background-color: var(--fc-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--fc-transition);
}

.fc-form-submit:hover {
  background-color: #e29209;
}

/* Footer Styles */
.fc-footer {
  background-color: var(--fc-text);
  color: white;
  padding: 4rem 0 2rem;
}

.fc-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fc-footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.fc-footer-about {
  max-width: 300px;
}

.fc-footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.fc-footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--fc-accent);
}

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

.fc-footer-link {
  margin-bottom: 0.75rem;
}

.fc-footer-link a {
  color: #cbd5e1;
  transition: var(--fc-transition);
}

.fc-footer-link a:hover {
  color: white;
}

.fc-footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.fc-footer-contact-icon {
  margin-right: 0.75rem;
  color: var(--fc-accent);
}

.fc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.fc-footer-copyright {
  color: #94a3b8;
}

.fc-footer-policies {
  display: flex;
  gap: 1.5rem;
}

.fc-footer-policy-link {
  color: #94a3b8;
  font-size: 0.875rem;
}

.fc-footer-policy-link:hover {
  color: white;
}

/* Cookie Consent */
.fc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--fc-background-light);
  padding: 1.5rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.fc-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.fc-cookie-text {
  flex: 1;
  min-width: 280px;
}

.fc-cookie-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.fc-cookie-description {
  color: var(--fc-text-light);
  margin-bottom: 0;
}

.fc-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.fc-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 1.5rem;
  display: none;
}

.fc-cookie-modal-content {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

.fc-cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--fc-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-cookie-modal-title {
  font-size: 1.25rem;
  margin: 0;
}

.fc-cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--fc-text-light);
}

.fc-cookie-modal-body {
  padding: 1.5rem;
}

.fc-cookie-category {
  margin-bottom: 2rem;
}

.fc-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.fc-cookie-category-title {
  font-size: 1.125rem;
  margin: 0;
}

.fc-cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.fc-cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.fc-cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: var(--fc-transition);
  border-radius: 24px;
}

.fc-cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--fc-transition);
  border-radius: 50%;
}

input:checked + .fc-cookie-category-slider {
  background-color: var(--fc-success);
}

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

.fc-cookie-category-description {
  color: var(--fc-text-light);
  font-size: 0.875rem;
}

.fc-cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--fc-border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Blog Styles */
.fc-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.fc-blog-card {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--fc-transition);
  display: flex;
  flex-direction: column;
}

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

.fc-blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.fc-blog-meta {
  display: flex;
  justify-content: space-between;
  color: var(--fc-text-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.fc-blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

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

.fc-blog-link {
  color: var(--fc-primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.fc-blog-link:hover {
  color: var(--fc-secondary);
}

.fc-blog-link-icon {
  margin-left: 0.5rem;
}

/* Article Page */
.fc-article {
  max-width: 800px;
  margin: 0 auto;
}

.fc-article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.fc-article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fc-article-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--fc-text-light);
}

.fc-article-author,
.fc-article-date {
  display: flex;
  align-items: center;
}

.fc-article-icon {
  margin-right: 0.5rem;
}

.fc-article-content {
  font-size: 1.125rem;
  line-height: 1.8;
}

.fc-article-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

.fc-article-content ul,
.fc-article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.fc-article-content li {
  margin-bottom: 0.5rem;
}

.fc-article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--fc-border);
  text-align: center;
}

/* Why Us Page */
.fc-why-us-section {
  padding: 5rem 0;
}

.fc-methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.fc-methodology-card {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.fc-methodology-icon {
  font-size: 3rem;
  color: var(--fc-primary);
  margin-bottom: 1.5rem;
}

.fc-methodology-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fc-methodology-description {
  color: var(--fc-text-light);
}

.fc-regulations {
  background-color: var(--fc-primary);
  color: white;
  padding: 4rem 2rem;
  border-radius: 0.5rem;
  margin-bottom: 4rem;
}

.fc-regulations-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.fc-regulations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.fc-regulation-item {
  display: flex;
  align-items: flex-start;
}

.fc-regulation-icon {
  font-size: 1.5rem;
  color: var(--fc-accent);
  margin-right: 1rem;
  flex-shrink: 0;
}

.fc-regulation-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.fc-regulation-content p {
  opacity: 0.9;
  font-size: 0.875rem;
}

.fc-faq-section {
  margin-bottom: 4rem;
}

.fc-faq-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.fc-faq-item {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
}

.fc-faq-question {
  padding: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-faq-question-icon {
  transition: var(--fc-transition);
}

.fc-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: var(--fc-transition);
}

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

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

/* Corporate Page */
.fc-corporate-spotlight {
  background-color: var(--fc-primary);
  color: white;
  padding: 5rem 0;
  margin-bottom: 5rem;
}

.fc-corporate-spotlight-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.fc-corporate-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.fc-corporate-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.fc-corporate-programs {
  margin-bottom: 5rem;
}

.fc-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.fc-program-card {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.fc-program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--fc-accent);
}

.fc-program-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fc-program-description {
  color: var(--fc-text-light);
  margin-bottom: 1.5rem;
}

.fc-program-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.fc-program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.fc-program-feature-icon {
  color: var(--fc-primary);
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.fc-process-section {
  background-color: var(--fc-background);
  padding: 5rem 0;
  margin-bottom: 5rem;
}

.fc-process-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 3rem;
}

.fc-process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.fc-process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--fc-border);
  transform: translateX(-50%);
}

.fc-timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
}

.fc-timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.fc-timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.fc-timeline-content {
  width: calc(50% - 30px);
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.fc-timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--fc-primary);
  border-radius: 50%;
}

.fc-timeline-item:nth-child(odd) .fc-timeline-content::before {
  right: -40px;
}

.fc-timeline-item:nth-child(even) .fc-timeline-content::before {
  left: -40px;
}

.fc-timeline-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fc-timeline-description {
  color: var(--fc-text-light);
}

/* Contact Page */
.fc-contact-page {
  padding: 5rem 0;
}

.fc-contact-map {
  border-radius: 0.5rem;
  overflow: hidden;
  height: 400px;
  margin-bottom: 4rem;
}

.fc-contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-contact-info-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.fc-contact-card {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.fc-contact-card-icon {
  font-size: 2.5rem;
  color: var(--fc-primary);
  margin-bottom: 1.5rem;
}

.fc-contact-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.fc-contact-card-text {
  color: var(--fc-text-light);
}

.fc-contact-card-link {
  display: block;
  margin-top: 1rem;
  color: var(--fc-primary);
  font-weight: 500;
}

.fc-office-hours {
  background-color: var(--fc-primary);
  color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

.fc-office-hours-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.fc-hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.fc-hours-day {
  text-align: center;
}

.fc-hours-day-name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fc-hours-time {
  opacity: 0.9;
}

.fc-legal-info {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.fc-legal-info-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.fc-legal-info-text {
  color: var(--fc-text-light);
}

/* Thank You Page */
.fc-thanks-section {
  padding: 8rem 0;
  text-align: center;
}

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

.fc-thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.fc-thanks-message {
  font-size: 1.25rem;
  color: var(--fc-text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Policy Pages */
.fc-policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
}

.fc-policy-header {
  margin-bottom: 3rem;
}

.fc-policy-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.fc-policy-date {
  color: var(--fc-text-light);
}

.fc-policy-content {
  line-height: 1.8;
}

.fc-policy-content h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.fc-policy-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.fc-policy-content p,
.fc-policy-content ul,
.fc-policy-content ol {
  margin-bottom: 1.5rem;
}

.fc-policy-content ul,
.fc-policy-content ol {
  padding-left: 1.5rem;
}

.fc-policy-content li {
  margin-bottom: 0.5rem;
}

/* Modal Dialog */
.fc-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--fc-transition);
}

.fc-modal.fc-active {
  opacity: 1;
  visibility: visible;
}

.fc-modal-content {
  background-color: var(--fc-background-light);
  border-radius: 0.5rem;
  width: 90%;
  max-width: 500px;
  transform: translateY(20px);
  transition: var(--fc-transition);
}

.fc-modal.fc-active .fc-modal-content {
  transform: translateY(0);
}

.fc-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--fc-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-modal-title {
  font-size: 1.25rem;
  margin: 0;
}

.fc-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--fc-text-light);
}

.fc-modal-body {
  padding: 1.5rem;
}

.fc-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--fc-border);
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Intl Tel Input */
.iti {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .fc-spotlight-title {
    font-size: 2rem;
  }
  
  .fc-section-title {
    font-size: 1.75rem;
  }
  
  .fc-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .fc-timeline-item {
    flex-direction: column;
    align-items: center;
  }
  
  .fc-timeline-content {
    width: 100%;
    max-width: 500px;
  }
  
  .fc-timeline-item:nth-child(odd) .fc-timeline-content::before,
  .fc-timeline-item:nth-child(even) .fc-timeline-content::before {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }
  
  .fc-process-timeline::before {
    left: 0;
    transform: none;
  }
}

.fc-mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .fc-nav {
    display: none;
  }
  
  .fc-mobile-menu-toggle {
    display: block;
  }
  
  .fc-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--fc-background-light);
    z-index: 200;
    padding: 2rem;
    transition: var(--fc-transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: block;
  }
  
  .fc-mobile-menu.fc-active {
    right: 0;
  }
  
  .fc-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .fc-mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--fc-text);
  }
  
  .fc-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .fc-mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .fc-spotlight-title {
    font-size: 1.75rem;
  }
  
  .fc-section-title {
    font-size: 1.5rem;
  }
  
  .fc-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .fc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .fc-spotlight {
    padding: 3rem 0;
  }
  
  .fc-spotlight-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .fc-spotlight-actions .fc-button {
    width: 100%;
  }
  
  .fc-section {
    padding: 3rem 0;
  }
  
  .fc-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}