
:root {
  --navy-blue: #0A2647;
  --royal-blue: #144272;
  --medium-blue: #205295;
  --light-blue: #2C74B3;
  --white: #FFFFFF;
  --light-green: #8ECF9D;
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --transition-smooth: all 0.3s ease-in-out;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(10, 38, 71, 0.1);
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

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

p {
  margin-bottom: 1rem;
}

a {
  color: var(--medium-blue);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover, a:focus {
  color: var(--light-blue);
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.iti {
  width: 100%;
}


.vsc-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.vsc-pageContent {
  margin: 2rem 0 4rem;
  min-height: 60vh;
}


.vsc-header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.75rem 0;
}

.vsc-navContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vsc-logo {
  height: 50px;
  width: auto;
}

.vsc-contactInfo {
  font-size: 0.9rem;
  color: var(--medium-blue);
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

.vsc-contactInfo i {
  margin-right: 0.5rem;
}

.vsc-navToggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-blue);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.vsc-navLinks {
  display: flex;
  list-style: none;
  margin: 0;
}

.vsc-navItem {
  margin-left: 1.5rem;
}

.vsc-navLink {
  color: var(--navy-blue);
  font-weight: 500;
  padding: 0.5rem;
  position: relative;
}

.vsc-navLink:hover, .vsc-navLink:focus {
  text-decoration: none;
}

.vsc-navLink::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--light-green);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.vsc-navLink:hover::after, .vsc-navLink:focus::after, .vsc-navActive::after {
  width: 100%;
}

.vsc-navActive {
  color: var(--royal-blue);
  font-weight: 600;
}


.vsc-heroSection {
  position: relative;
  padding: 4rem 0;
  background-color: var(--light-gray);
  overflow: hidden;
}

.vsc-heroContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.vsc-heroBackground {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: 1;
}

.vsc-heroSubtitle {
  color: var(--royal-blue);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 80%;
}

.vsc-actionButtons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.vsc-primaryBtn, .vsc-secondaryBtn, .vsc-tertiaryBtn {
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 1rem;
}

.vsc-primaryBtn {
  background-color: var(--light-green);
  color: var(--navy-blue);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.vsc-primaryBtn:hover, .vsc-primaryBtn:focus-visible {
  background-color: #7AC089;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  color: var(--navy-blue);
}

.vsc-secondaryBtn {
  background-color: transparent;
  color: var(--navy-blue);
  border: 2px solid var(--light-green);
}

.vsc-secondaryBtn:hover, .vsc-secondaryBtn:focus-visible {
  background-color: rgba(142, 207, 157, 0.1);
  text-decoration: none;
  color: var(--royal-blue);
}

.vsc-tertiaryBtn {
  background-color: var(--medium-blue);
  color: var(--white);
}

.vsc-tertiaryBtn:hover, .vsc-tertiaryBtn:focus-visible {
  background-color: var(--royal-blue);
  text-decoration: none;
  color: var(--white);
}


.vsc-featureGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.vsc-featureCard {
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.08);
  transition: var(--transition-smooth);
  height: 100%;
}

.vsc-featureCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(10, 38, 71, 0.12);
}

.vsc-featureIcon {
  color: var(--light-blue);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vsc-featureTitle {
  color: var(--navy-blue);
  margin-bottom: 0.75rem;
}

.vsc-featureText {
  color: var(--dark-gray);
  font-size: 0.95rem;
}


.vsc-sectionTitle {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--navy-blue);
  position: relative;
  padding-bottom: 1rem;
}

.vsc-sectionTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--light-green);
  border-radius: 2px;
}

.vsc-servicesTabs {
  margin-bottom: 3rem;
}

.vsc-tabList {
  display: flex;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--light-blue) var(--light-gray);
}

.vsc-tabList::-webkit-scrollbar {
  height: 6px;
}

.vsc-tabList::-webkit-scrollbar-track {
  background: var(--light-gray);
}

.vsc-tabList::-webkit-scrollbar-thumb {
  background-color: var(--light-blue);
  border-radius: 6px;
}

.vsc-tabItem {
  padding: 1rem 1.5rem;
  color: var(--navy-blue);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.vsc-tabItem:hover, .vsc-tabItemActive {
  color: var(--royal-blue);
  border-bottom-color: var(--light-green);
}

.vsc-tabContent {
  display: none;
}

.vsc-tabContentActive {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.vsc-serviceLayout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vsc-serviceItem {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.08);
  transition: var(--transition-smooth);
}

.vsc-serviceItem:hover {
  box-shadow: 0 8px 24px rgba(10, 38, 71, 0.12);
}

.vsc-serviceContent {
  padding: 2rem;
}

.vsc-serviceImage {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

.vsc-serviceMeta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--medium-blue);
}

.vsc-serviceDuration, .vsc-serviceFormat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vsc-serviceExpectedResults {
  background-color: var(--light-gray);
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 4px;
}

.vsc-serviceExpectedResults h4 {
  color: var(--royal-blue);
  margin-bottom: 0.5rem;
}

.vsc-resultsList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vsc-resultItem {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.vsc-resultItem i {
  color: var(--light-green);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}


.vsc-toolsSection {
  background-color: var(--light-gray);
  padding: 4rem 0;
  margin: 3rem 0;
}

.vsc-toolGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.vsc-toolCard {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.05);
}

.vsc-toolContent {
  padding: 1.5rem;
}

.vsc-toolTitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vsc-toolTitle i {
  color: var(--light-blue);
  font-size: 1.25rem;
}

.vsc-toolChart {
  margin-top: 1.5rem;
  width: 100%;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
}


.vsc-previewSection {
  margin: 4rem 0;
}

.vsc-previewGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.vsc-previewCard {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.08);
  height: 100%;
}

.vsc-previewImage {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}

.vsc-previewContent {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.vsc-previewTitle {
  margin-bottom: 0.75rem;
}

.vsc-previewText {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.vsc-previewLink {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--medium-blue);
  font-weight: 500;
  transition: var(--transition-smooth);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.vsc-previewLink:hover, .vsc-previewLink:focus {
  text-decoration: none;
  color: var(--light-blue);
  border-bottom-color: var(--light-blue);
}


.vsc-faqSection {
  margin: 4rem 0;
}

.vsc-faqContainer {
  max-width: 800px;
  margin: 0 auto;
}

.vsc-accordion {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vsc-accordionItem {
  margin-bottom: 1rem;
  border: 1px solid rgba(10, 38, 71, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.vsc-accordionButton {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy-blue);
  cursor: pointer;
  text-align: left;
}

.vsc-accordionIcon {
  transition: transform 0.3s ease;
}

.vsc-accordionOpen .vsc-accordionIcon {
  transform: rotate(180deg);
}

.vsc-accordionPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--light-gray);
}

.vsc-accordionOpen .vsc-accordionPanel {
  max-height: 1000px;
}

.vsc-accordionContent {
  padding: 1rem 1.5rem;
}


.vsc-contactSection {
  background-color: var(--light-gray);
  padding: 4rem 0;
  margin: 3rem 0 0;
}

.vsc-contactGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vsc-formContainer {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(10, 38, 71, 0.08);
}

.vsc-formTitle {
  margin-bottom: 1.5rem;
  color: var(--navy-blue);
}

.vsc-formGroup {
  margin-bottom: 1.5rem;
}

.vsc-formLabel {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--navy-blue);
}

.vsc-formInput, .vsc-formTextarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(10, 38, 71, 0.2);
  border-radius: 4px;
  background-color: var(--white);
  color: var(--dark-gray);
  font-family: 'Inter', sans-serif;
  transition: var(--transition-smooth);
}

.vsc-formInput:focus, .vsc-formTextarea:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 2px rgba(44, 116, 179, 0.2);
}

.vsc-formTextarea {
  resize: vertical;
  min-height: 120px;
}

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

.vsc-checkInput {
  margin-top: 0.25rem;
  margin-right: 0.75rem;
}

.vsc-checkLabel {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.vsc-contactInfo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vsc-contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vsc-contactIcon {
  width: 40px;
  height: 40px;
  background-color: var(--light-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vsc-contactText {
  flex-grow: 1;
}

.vsc-contactTitle {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--navy-blue);
}


.vsc-footer {
  background-color: var(--navy-blue);
  color: var(--white);
  padding-top: 4rem;
}

.vsc-footerMain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.vsc-footerCol h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vsc-footerLinks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vsc-footerLink {
  margin-bottom: 0.75rem;
}

.vsc-footerLink a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
}

.vsc-footerLink a:hover, .vsc-footerLink a:focus {
  color: var(--white);
  text-decoration: none;
}

.vsc-footerContact {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vsc-footerContact i {
  color: var(--light-green);
  margin-top: 0.25rem;
}

.vsc-cookieSettings {
  display: inline-block;
  margin-top: 1rem;
  color: var(--light-green);
  cursor: pointer;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.vsc-cookieSettings:hover, .vsc-cookieSettings:focus {
  text-decoration: underline;
  color: var(--white);
}

.vsc-footerBottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}


.vsc-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 38, 71, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.vsc-modalActive {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.vsc-modalContent {
  background-color: var(--white);
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.vsc-modalClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--navy-blue);
  cursor: pointer;
  font-size: 1.25rem;
}

.vsc-modalHeader {
  margin-bottom: 1.5rem;
}

.vsc-modalBody {
  margin-bottom: 2rem;
}

.vsc-modalFooter {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.vsc-cookieModal {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.vsc-cookieModalActive {
  display: block;
  transform: translateY(0);
}

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

.vsc-cookieText {
  flex: 3;
}

.vsc-cookieTitle {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.vsc-cookieButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  flex: 1;
}

.vsc-cookieDetailedSettings {
  color: var(--medium-blue);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-block;
  font-size: 0.9rem;
}


.vsc-settingsPanel {
  display: none;
  background-color: var(--white);
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.vsc-settingsPanelActive {
  display: block;
}

.vsc-cookieCategory {
  padding: 1rem;
  border-bottom: 1px solid rgba(10, 38, 71, 0.1);
}

.vsc-cookieCategory:last-child {
  border-bottom: none;
}

.vsc-categoryHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.vsc-categoryTitle {
  font-weight: 600;
  color: var(--navy-blue);
}

.vsc-categoryToggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.vsc-toggleInput {
  opacity: 0;
  width: 0;
  height: 0;
}

.vsc-toggleSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-smooth);
  border-radius: 34px;
}

.vsc-toggleSlider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--white);
  transition: var(--transition-smooth);
  border-radius: 50%;
}

.vsc-toggleInput:checked + .vsc-toggleSlider {
  background-color: var(--light-green);
}

.vsc-toggleInput:focus + .vsc-toggleSlider {
  box-shadow: 0 0 1px var(--light-green);
}

.vsc-toggleInput:checked + .vsc-toggleSlider:before {
  transform: translateX(26px);
}

.vsc-categoryDescription {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.vsc-settingsActions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.vsc-confirmationModal {
  z-index: 1001;
}


.vsc-legalContent {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.vsc-legalContent h2 {
  color: var(--navy-blue);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.vsc-legalContent h3 {
  color: var(--medium-blue);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.vsc-legalDate {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 2rem;
  display: block;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1rem;
}

.vsc-legalSection {
  margin-bottom: 2rem;
}

.vsc-legalSection p {
  margin-bottom: 1rem;
}

.vsc-legalList {
  margin-bottom: 1.5rem;
}

.vsc-legalList li {
  margin-bottom: 0.5rem;
}


.vsc-thanksSection {
  text-align: center;
  padding: 5rem 0;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vsc-thanksIcon {
  color: var(--light-green);
  font-size: 4rem;
  margin-bottom: 2rem;
}

.vsc-thanksTitle {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.vsc-thanksText {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  color: var(--medium-blue);
}


.vsc-sessionsSection {
  margin: 4rem 0;
}

.vsc-themesList {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.vsc-themeItem {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.08);
  overflow: hidden;
}

.vsc-themeHeader {
  background-color: var(--royal-blue);
  color: var(--white);
  padding: 1.5rem;
}

.vsc-themeBody {
  padding: 2rem;
}

.vsc-formatSection {
  background-color: var(--light-gray);
  padding: 3rem 0;
  margin: 3rem 0;
}

.vsc-formatCard {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.05);
  padding: 2rem;
}

.vsc-programSection {
  margin: 4rem 0;
}

.vsc-programTable {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.vsc-programTable th, .vsc-programTable td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.vsc-programTable th {
  background-color: var(--light-blue);
  color: var(--white);
  font-weight: 500;
}

.vsc-programTable tr:nth-child(even) {
  background-color: var(--light-gray);
}

.vsc-resultList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.vsc-resultCard {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(10, 38, 71, 0.05);
  height: 100%;
}

.vsc-resultIcon {
  color: var(--light-green);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.vsc-tariffSection {
  background-color: var(--light-gray);
  padding: 3rem 0;
  margin: 3rem 0;
}

.vsc-tariffOptions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vsc-tariffCard {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.08);
  padding: 2rem;
  height: 100%;
}

.vsc-tariffCard h3 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-gray);
}

.vsc-tariffItem {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.vsc-tariffItem i {
  color: var(--light-green);
  margin-right: 0.75rem;
}

.vsc-reservationSection {
  margin: 4rem 0;
  text-align: center;
}

.vsc-reservationText {
  max-width: 700px;
  margin: 0 auto 2rem;
}

.vsc-phoneNumber {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: var(--light-gray);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.vsc-phoneNumber i {
  color: var(--light-blue);
}


.vsc-eventsSection {
  margin: 4rem 0;
}

.vsc-eventsList {
  margin: 3rem 0;
}

.vsc-eventCard {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 38, 71, 0.08);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.vsc-eventCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--light-green);
}

.vsc-eventDate {
  color: var(--medium-blue);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

.vsc-eventName {
  color: var(--navy-blue);
  margin-bottom: 0.75rem;
}

.vsc-eventDetails {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.vsc-eventDetail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vsc-eventDetail i {
  color: var(--light-blue);
}

.vsc-pastEventsSection {
  background-color: var(--light-gray);
  padding: 3rem 0;
  margin: 3rem 0;
}

.vsc-pastEventsList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vsc-pastEventCard {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(10, 38, 71, 0.05);
  height: 100%;
}

.vsc-pastEventHeader {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 1rem;
}

.vsc-pastEventBody {
  padding: 1.5rem;
}

.vsc-organizeSection {
  margin: 4rem 0;
}

.vsc-organizeText {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.vsc-ctaSection {
  background-color: var(--royal-blue);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
  margin: 4rem 0;
}

.vsc-ctaContent {
  max-width: 700px;
  margin: 0 auto;
}

.vsc-ctaTitle {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.vsc-ctaText {
  margin-bottom: 2rem;
}


.vsc-addressSection {
  margin: 4rem 0;
}

.vsc-addressGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vsc-addressDetails {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vsc-addressItem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vsc-addressIcon {
  width: 40px;
  height: 40px;
  background-color: var(--light-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vsc-addressText {
  flex-grow: 1;
}

.vsc-addressTitle {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--navy-blue);
}

.vsc-mapContainer {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10, 38, 71, 0.08);
}

.vsc-mapImage {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.vsc-mapNote {
  background-color: var(--light-gray);
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--medium-blue);
}


@media (max-width: 1200px) {
  .vsc-wrapper {
    width: 95%;
  }
  
  .vsc-footerMain {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .vsc-featureGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vsc-toolGrid {
    grid-template-columns: 1fr;
  }
  
  .vsc-contactGrid, .vsc-addressGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vsc-resultList {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vsc-pastEventsList {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vsc-footerMain {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .vsc-navToggle {
    display: block;
    order: 3;
  }
  
  .vsc-navLinks {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    transition: height 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    z-index: 10;
  }
  
  .vsc-navActive {
    height: auto;
  }
  
  .vsc-navItem {
    width: 100%;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .vsc-navLink {
    display: block;
    padding: 1rem 0;
  }
  
  .vsc-heroSection {
    padding: 3rem 0;
  }
  
  .vsc-heroBackground {
    opacity: 0.3;
    width: 100%;
  }
  
  .vsc-heroContent {
    max-width: 100%;
  }
  
  .vsc-featureGrid {
    grid-template-columns: 1fr;
  }
  
  .vsc-previewGrid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vsc-resultList {
    grid-template-columns: 1fr;
  }
  
  .vsc-tariffOptions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .vsc-pastEventsList {
    grid-template-columns: 1fr;
  }
  
  .vsc-cookieContent {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .vsc-cookieButtons {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }
  
  .vsc-footerMain {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .vsc-actionButtons {
    flex-direction: column;
    width: 100%;
  }
  
  .vsc-primaryBtn, .vsc-secondaryBtn, .vsc-tertiaryBtn {
    width: 100%;
    text-align: center;
  }
  
  .vsc-modalContent {
    padding: 1.5rem;
  }
  
  .vsc-modalFooter {
    flex-direction: column;
  }
  
  .vsc-modalFooter button {
    width: 100%;
  }
  
  .vsc-programTable {
    display: block;
    overflow-x: auto;
  }
}


@media print {
  .vsc-header, .vsc-footer, .vsc-contactSection, .vsc-cookieModal {
    display: none;
  }
  
  .vsc-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  
  .vsc-pageContent {
    margin: 0;
    padding: 1cm;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: none;
  }
  
  .vsc-featureCard, .vsc-serviceItem, .vsc-toolCard, .vsc-previewCard, .vsc-accordionItem {
    box-shadow: none;
    border: 1px solid #ddd;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    page-break-inside: avoid;
  }
  
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  
  .vsc-sectionTitle::after, .vsc-accordionIcon, .vsc-eventCard::before {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #121212;
    --light-gray: #1e1e1e;
    --dark-gray: #e0e0e0;
    --navy-blue: #2C74B3;
    --royal-blue: #205295;
    --medium-blue: #144272;
    --light-blue: #0A2647;
  }
  
  .vsc-primaryBtn {
    background-color: var(--light-green);
    color: var(--light-gray);
  }
  
  .vsc-formInput, .vsc-formTextarea {
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-color: #333;
  }
  
  .vsc-featureCard, .vsc-serviceItem, .vsc-toolCard, .vsc-previewCard,
  .vsc-formContainer, .vsc-modalContent, .vsc-eventCard, .vsc-tariffCard,
  .vsc-cookieModal, .vsc-resultCard, .vsc-pastEventCard, .vsc-accordionItem {
    background-color: #1a1a1a;
  }
  
  .vsc-accordionButton {
    background-color: #1a1a1a;
  }
  
  .vsc-accordionPanel {
    background-color: #2a2a2a;
  }
  
  .vsc-programTable th {
    background-color: var(--medium-blue);
  }
  
  .vsc-programTable tr:nth-child(even) {
    background-color: #2a2a2a;
  }
  
  .vsc-navLinks.vsc-navActive {
    background-color: #1a1a1a;
  }
}


:focus-visible {
  outline: 3px solid var(--light-green);
  outline-offset: 3px;
}