/* Base Styles and Variables */
:root {
  --color-primary: #2A4D69;
  --color-secondary: #4B86B4;
  --color-accent: #63ADF2;
  --color-complementary: #E9F2F9;
  --color-background: #F8F9FA;
  --color-text: #333F48;
  --color-dark-accent: #1C3144;
  --color-light-gray: #E5E5E5;
  
  --font-family: 'Plus Jakarta Sans', sans-serif;
  --transition-standard: all 0.3s ease;
  --box-shadow-standard: 0 4px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 6px 15px rgba(0, 0, 0, 0.15);
  --border-radius-standard: 8px;
  --section-spacing: 6rem;
  --element-spacing: 2rem;
}

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

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition-standard);
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.svp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-standard);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-standard);
  border: none;
  font-family: var(--font-family);
  text-decoration: none;
}

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

.svp-button--primary:hover {
  background-color: var(--color-dark-accent);
  color: white;
  transform: translateY(-2px);
}

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

.svp-button--secondary:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.svp-button--accent {
  background-color: var(--color-accent);
  color: white;
}

.svp-button--accent:hover {
  background-color: var(--color-secondary);
  color: white;
  transform: translateY(-2px);
}

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

.svp-button--light:hover {
  background-color: var(--color-complementary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Header and Navigation */
.svp-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.svp-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-logo {
  display: block;
  max-width: 200px;
}

.svp-logo img {
  width: 100%;
  height: auto;
}

.svp-nav {
  display: flex;
  align-items: center;
}

.svp-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.svp-nav__toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--color-primary);
  transition: var(--transition-standard);
}

.svp-nav__menu {
  display: flex;
  gap: 2rem;
}

.svp-nav__link {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.svp-nav__link:hover {
  color: var(--color-primary);
}

.svp-nav__link--active {
  color: var(--color-primary);
}

.svp-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
}

.svp-cart-icon {
  position: relative;
}

.svp-cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-accent);
  color: white;
  font-size: 0.75rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.svp-hero {
  display: flex;
  align-items: center;
  padding: 5% 5%;
  background: linear-gradient(135deg, var(--color-complementary) 0%, white 100%);
  min-height: 600px;
}

.svp-hero__content {
  flex: 1;
  padding-right: 5%;
}

.svp-hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.svp-hero__subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.svp-hero__actions {
  display: flex;
  gap: 1rem;
}

.svp-hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 6s ease-in-out infinite;
}

.svp-hero__image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: var(--box-shadow-standard);
}

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

/* Section Headers */
.svp-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.svp-section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.svp-section-subtitle {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-text);
}

/* Features Section */
.svp-features {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-feature-card {
  background-color: white;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
}

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

.svp-feature-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.svp-feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svp-feature-card:hover .svp-feature-card__image img {
  transform: scale(1.05);
}

.svp-feature-card__content {
  padding: 1.5rem;
}

.svp-feature-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.svp-feature-card__description {
  color: var(--color-text);
  margin-bottom: 0;
}

/* Promo Section */
.svp-promo {
  padding: 4rem 5%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  text-align: center;
}

.svp-promo__content {
  max-width: 800px;
  margin: 0 auto;
}

.svp-promo__title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.svp-promo__description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Why Choose Us Section */
.svp-why-us {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-why-us__item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-standard);
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
}

.svp-why-us__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.svp-why-us__icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.svp-why-us__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svp-why-us__description {
  color: var(--color-text);
  margin-bottom: 0;
}

/* Contact Form Section */
.svp-contact-form {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-contact-form__container {
  max-width: 800px;
  margin: 0 auto;
}

.svp-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svp-form__group {
  display: flex;
  flex-direction: column;
}

.svp-form__label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.svp-form__input,
.svp-form__textarea,
.svp-form__select {
  padding: 0.75rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-standard);
  font-family: var(--font-family);
  transition: var(--transition-standard);
}

.svp-form__input:focus,
.svp-form__textarea:focus,
.svp-form__select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(75, 134, 180, 0.2);
}

.svp-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.svp-form__checkbox input {
  margin-top: 0.25rem;
}

.svp-form__submit {
  align-self: flex-start;
}

/* Partners Section */
.svp-partners {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-partners__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.svp-partners__logos img {
  max-height: 60px;
  filter: grayscale(1);
  opacity: 0.7;
  transition: var(--transition-standard);
}

.svp-partners__logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Footer */
.svp-footer {
  background-color: var(--color-primary);
  color: white;
  padding-top: 4rem;
}

.svp-footer__main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5% 3rem;
}

.svp-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svp-footer__logo {
  max-width: 180px;
  filter: brightness(0) invert(1);
}

.svp-footer__tagline {
  font-size: 0.9rem;
  opacity: 0.8;
}

.svp-footer__heading {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.svp-footer__heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-accent);
}

.svp-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svp-footer__list a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-standard);
}

.svp-footer__list a:hover {
  color: white;
  padding-left: 5px;
}

.svp-footer__address {
  font-style: normal;
  line-height: 1.8;
}

.svp-footer__address a {
  color: rgba(255, 255, 255, 0.8);
}

.svp-footer__address a:hover {
  color: white;
}

.svp-footer__bottom {
  background-color: var(--color-dark-accent);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svp-footer__copyright {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.svp-footer__cookie-settings {
  background: none;
  border: none;
  color: white;
  text-decoration: underline;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 0.9rem;
}

.svp-footer__cookie-settings:hover {
  color: var(--color-accent);
}

/* Cookie Consent Modal */
.svp-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.svp-cookie-modal.is-active {
  display: flex;
}

#phone {
  width: 100%;
}

.svp-cookie-modal__content {
  background-color: white;
  border-radius: var(--border-radius-standard);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--box-shadow-hover);
}

.svp-cookie-modal__header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-light-gray);
}

.svp-cookie-modal__title {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.svp-cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-text);
}

.svp-cookie-modal__body {
  padding: 1.5rem;
}

.svp-cookie-categories {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svp-cookie-category {
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-standard);
  overflow: hidden;
}

.svp-cookie-category__header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svp-cookie-category__title {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.svp-cookie-category__description {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--color-text);
}

.svp-cookie-category__toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.svp-cookie-category__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.svp-cookie-category__toggle label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition-standard);
  border-radius: 34px;
}

.svp-cookie-category__toggle label:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition-standard);
  border-radius: 50%;
}

.svp-cookie-category__toggle input:checked + label {
  background-color: var(--color-secondary);
}

.svp-cookie-category__toggle input:checked + label:before {
  transform: translateX(20px);
}

.svp-cookie-category__toggle--disabled {
  opacity: 0.7;
}

.svp-cookie-modal__footer {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-light-gray);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cart Sidebar */
.svp-cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1500;
  display: flex;
  flex-direction: column;
}

.svp-cart-sidebar.is-active {
  right: 0;
}

.svp-cart-sidebar__header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--color-light-gray);
}

.svp-cart-sidebar__title {
  margin-bottom: 0;
  font-size: 1.5rem;
}

.svp-cart-sidebar__close {
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--color-text);
}

.svp-cart-sidebar__content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.svp-cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svp-cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 1.5rem;
}

.svp-cart-item__image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
}

.svp-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svp-cart-item__details {
  flex: 1;
}

.svp-cart-item__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.svp-cart-item__price {
  font-weight: 500;
  color: var(--color-primary);
}

.svp-cart-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.svp-cart-item__quantity-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-light-gray);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.svp-cart-item__quantity-value {
  width: 30px;
  text-align: center;
}

.svp-cart-item__remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1.1rem;
  align-self: flex-start;
}

.svp-cart-sidebar__empty {
  text-align: center;
  padding: 2rem 0;
  color: #999;
  display: none;
}

.svp-cart-sidebar__summary {
  margin-top: auto;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 1.5rem;
}

.svp-cart-sidebar__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.svp-checkout-button {
  width: 100%;
  margin-bottom: 1rem;
}

.svp-clear-cart-button {
  width: 100%;
}

/* Page Header */
.svp-page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  padding: 5rem 5%;
  text-align: center;
}

.svp-page-header--simple {
  padding: 3rem 5%;
}

.svp-page-header__title {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.svp-page-header__subtitle {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Products Page */
.svp-products-filter {
  padding: 2rem 5%;
  background-color: white;
  border-bottom: 1px solid var(--color-light-gray);
}

.svp-products-filter__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.svp-products-filter__search {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-standard);
  overflow: hidden;
}

.svp-products-filter__input {
  padding: 0.75rem;
  border: none;
  width: 250px;
  font-family: var(--font-family);
}

.svp-products-filter__input:focus {
  outline: none;
}

.svp-products-filter__button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}

.svp-products-filter__categories {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.svp-products-filter__category {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: var(--font-family);
  border-radius: var(--border-radius-standard);
  transition: var(--transition-standard);
}

.svp-products-filter__category--active {
  background-color: var(--color-primary);
  color: white;
}

.svp-products-filter__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.svp-products-filter__select {
  padding: 0.5rem;
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-standard);
  font-family: var(--font-family);
}

.svp-products {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-product-card {
  background-color: white;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
  display: flex;
  flex-direction: column;
}

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

.svp-product-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.svp-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svp-product-card:hover .svp-product-card__image img {
  transform: scale(1.05);
}

.svp-product-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svp-product-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.svp-product-card__description {
  margin-bottom: 1rem;
  flex: 1;
}

.svp-product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.svp-product-tag {
  background-color: var(--color-complementary);
  color: var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.85rem;
}

.svp-product-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Device Comparison */
.svp-device-comparison {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-comparison-table-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow-x: auto;
}

.svp-comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.svp-comparison-table th,
.svp-comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid var(--color-light-gray);
}

.svp-comparison-table th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 500;
}

.svp-comparison-table th:first-child {
  text-align: left;
}

.svp-comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-primary);
}

.svp-comparison-table tr:hover {
  background-color: var(--color-complementary);
}

.svp-comparison-table i.fa-check {
  color: #28a745;
}

.svp-comparison-table i.fa-minus {
  color: #dc3545;
}

/* FAQ Section */
.svp-faq {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-faq__container {
  max-width: 900px;
  margin: 0 auto;
}

.svp-faq__item {
  background-color: white;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow-standard);
}

.svp-faq__question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.svp-faq__question h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.svp-faq__toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-standard);
}

.svp-faq__item.is-active .svp-faq__toggle {
  transform: rotate(45deg);
}

.svp-faq__answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.svp-faq__item.is-active .svp-faq__answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* CTA Banner */
.svp-cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 4rem 5%;
  color: white;
  text-align: center;
}

.svp-cta-banner__content {
  max-width: 800px;
  margin: 0 auto;
}

.svp-cta-banner__title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.svp-cta-banner__text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Mission Section */
.svp-mission {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-mission__container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-mission__content {
  flex: 1;
}

.svp-mission__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.svp-mission__text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.svp-mission__image {
  flex: 1;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  box-shadow: var(--box-shadow-standard);
}

.svp-mission__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Values Section */
.svp-values {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-value-card {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.svp-value-card__icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-complementary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.svp-value-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svp-value-card__description {
  color: var(--color-text);
  margin-bottom: 0;
}

/* Journey Timeline */
.svp-journey {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-journey__timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.svp-journey__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--color-primary);
  transform: translateX(-50%);
}

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

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

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

.svp-timeline-item__date {
  position: absolute;
  top: 0;
  width: 120px;
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-standard);
  text-align: center;
  font-weight: 700;
}

.svp-timeline-item:nth-child(odd) .svp-timeline-item__date {
  right: 0;
}

.svp-timeline-item:nth-child(even) .svp-timeline-item__date {
  left: 0;
}

.svp-timeline-item__content {
  width: calc(50% - 3rem);
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
}

.svp-timeline-item__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svp-timeline-item__description {
  margin-bottom: 0;
}

/* Testimonials */
.svp-testimonials {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-testimonials__slider {
  max-width: 900px;
  margin: 0 auto 2rem;
  position: relative;
  overflow: hidden;
}

.svp-testimonial {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
  display: none;
}

.svp-testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.svp-testimonial__content {
  text-align: center;
}

.svp-testimonial__quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.svp-testimonial__quote::before,
.svp-testimonial__quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--color-primary);
  opacity: 0.5;
}

.svp-testimonial__author {
  display: inline-block;
}

.svp-testimonial__name {
  font-weight: 700;
  color: var(--color-primary);
}

.svp-testimonial__title {
  font-size: 0.9rem;
  color: var(--color-text);
}

.svp-testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.svp-testimonials__prev,
.svp-testimonials__next {
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-standard);
}

.svp-testimonials__prev:hover,
.svp-testimonials__next:hover {
  background-color: var(--color-secondary);
}

.svp-testimonials__indicators {
  display: flex;
  gap: 0.5rem;
}

.svp-testimonials__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-light-gray);
  cursor: pointer;
  transition: var(--transition-standard);
}

.svp-testimonials__indicator--active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* Commitments */
.svp-commitments {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-commitments__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-commitment-card {
  background-color: var(--color-complementary);
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  transition: var(--transition-standard);
}

.svp-commitment-card:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-5px);
}

.svp-commitment-card:hover .svp-commitment-card__title {
  color: white;
}

.svp-commitment-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  transition: var(--transition-standard);
}

.svp-commitment-card__description {
  margin-bottom: 0;
}

/* Security Principles */
.svp-security-principles {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-security-principles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-security-principle {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-complementary);
  border-radius: var(--border-radius-standard);
  transition: var(--transition-standard);
}

.svp-security-principle:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-standard);
}

.svp-security-principle__icon {
  width: 80px;
  height: 80px;
  background-color: white;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.svp-security-principle__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svp-security-principle__description {
  color: var(--color-text);
  margin-bottom: 0;
}

/* Articles Section */
.svp-articles {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-article-card {
  background-color: white;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
  display: flex;
  flex-direction: column;
}

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

.svp-article-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.svp-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svp-article-card:hover .svp-article-card__image img {
  transform: scale(1.05);
}

.svp-article-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svp-article-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.svp-article-card__excerpt {
  flex: 1;
  margin-bottom: 1.5rem;
}

.svp-article-card__link {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
}

.svp-article-card__link i {
  margin-left: 0.5rem;
  transition: var(--transition-standard);
}

.svp-article-card__link:hover i {
  transform: translateX(5px);
}

/* Quick Tips */
.svp-quick-tips {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-quick-tips__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-quick-tip {
  padding: 2rem;
  background-color: var(--color-complementary);
  border-radius: var(--border-radius-standard);
  position: relative;
  transition: var(--transition-standard);
}

.svp-quick-tip:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-standard);
}

.svp-quick-tip__number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.svp-quick-tip__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
}

.svp-quick-tip__description {
  margin-bottom: 0;
}

/* Video Resources */
.svp-video-resources {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

.svp-video-resources__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-video-card {
  background-color: white;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
}

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

.svp-video-card__placeholder {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.svp-video-card__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svp-video-card:hover .svp-video-card__placeholder img {
  transform: scale(1.05);
}

.svp-video-card__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition-standard);
}

.svp-video-card:hover .svp-video-card__play-button {
  background-color: var(--color-secondary);
  transform: translate(-50%, -50%) scale(1.1);
}

.svp-video-card__content {
  padding: 1.5rem;
}

.svp-video-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.svp-video-card__description {
  margin-bottom: 0;
}

/* Contact Info Section */
.svp-contact-info {
  padding: var(--section-spacing) 5%;
  background-color: white;
}

.svp-contact-info__container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.svp-contact-info__item {
  text-align: center;
  padding: 2rem;
  background-color: var(--color-complementary);
  border-radius: var(--border-radius-standard);
  transition: var(--transition-standard);
}

.svp-contact-info__item:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-standard);
}

.svp-contact-info__icon {
  width: 70px;
  height: 70px;
  background-color: white;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.svp-contact-info__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svp-contact-info__details {
  font-style: normal;
  line-height: 1.8;
}

.svp-contact-info__details a {
  color: var(--color-primary);
  transition: var(--transition-standard);
}

.svp-contact-info__details a:hover {
  color: var(--color-secondary);
}

/* Contact Main Section */
.svp-contact-main {
  padding: var(--section-spacing) 5%;
  background-color: var(--color-background);
}

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

.svp-contact-form-wrapper,
.svp-map-wrapper {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
}

.svp-map {
  height: 100%;
  height: auto;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
  box-sizing: border-box;
}

.svp-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Article Page */
.svp-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 5%;
}

.svp-article__header {
  margin-bottom: 2rem;
}

.svp-article__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.svp-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #666;
  font-size: 0.9rem;
}

.svp-article__featured-image {
  margin-bottom: 2rem;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
}

.svp-article__featured-image img {
  width: 100%;
  height: auto;
}

.svp-article__content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.svp-article__content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.svp-article__content h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.svp-article__content ul,
.svp-article__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.svp-article__content ul li,
.svp-article__content ol li {
  margin-bottom: 0.5rem;
}

.svp-article__content ul {
  list-style-type: disc;
}

.svp-article__content ol {
  list-style-type: decimal;
}

.svp-article__callout {
  background-color: var(--color-complementary);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 var(--border-radius-standard) var(--border-radius-standard) 0;
}

.svp-article__callout h4 {
  margin-top: 0;
  color: var(--color-primary);
}

.svp-article__callout p:last-child {
  margin-bottom: 0;
}

.svp-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0;
}

.svp-article__tag {
  background-color: var(--color-complementary);
  color: var(--color-primary);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
}

.svp-article__navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-light-gray);
}

.svp-article__back {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  font-weight: 500;
}

.svp-article__back i {
  margin-right: 0.5rem;
}

.svp-article__more {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.svp-article__more span {
  font-weight: 500;
  color: var(--color-text);
}

.svp-article__cta {
  background-color: var(--color-complementary);
  padding: 2rem;
  border-radius: var(--border-radius-standard);
  text-align: center;
  margin-top: 3rem;
}

.svp-article__cta h3 {
  margin-bottom: 1rem;
}

.svp-article__cta p {
  margin-bottom: 1.5rem;
}

/* Legal Pages */
.svp-legal-content {
  padding: 4rem 5%;
  background-color: white;
}

.svp-legal-content__container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-legal-content__navigation {
  position: sticky;
  top: 100px;
  align-self: start;
}

.svp-legal-content__nav-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.svp-legal-content__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.svp-legal-content__nav-list a {
  color: var(--color-text);
  transition: var(--transition-standard);
}

.svp-legal-content__nav-list a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.svp-legal-section {
  margin-bottom: 3rem;
}

.svp-legal-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

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

.svp-legal-section p,
.svp-legal-section ul,
.svp-legal-section ol {
  margin-bottom: 1.5rem;
}

.svp-legal-section ul,
.svp-legal-section ol {
  padding-left: 1.5rem;
}

.svp-legal-section ul li,
.svp-legal-section ol li {
  margin-bottom: 0.5rem;
}

.svp-legal-contact {
  background-color: var(--color-complementary);
  padding: 1.5rem;
  border-radius: var(--border-radius-standard);
  margin-top: 1.5rem;
}

.svp-cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.svp-cookie-table th,
.svp-cookie-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-light-gray);
}

.svp-cookie-table th {
  background-color: var(--color-primary);
  color: white;
  font-weight: 500;
}

.svp-cookie-management {
  padding: 4rem 5%;
  background-color: var(--color-complementary);
  text-align: center;
}

.svp-cookie-management__container {
  max-width: 800px;
  margin: 0 auto;
}

.svp-cookie-management__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.svp-cookie-management__description {
  margin-bottom: 2rem;
}

/* Thanks Page */
.svp-thanks-section {
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.svp-thanks-content {
  max-width: 800px;
  text-align: center;
}

.svp-thanks-icon {
  font-size: 5rem;
  color: #28a745;
  margin-bottom: 2rem;
}

.svp-thanks-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.svp-thanks-message {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.svp-thanks-details {
  background-color: var(--color-complementary);
  padding: 2rem;
  border-radius: var(--border-radius-standard);
  text-align: left;
  margin: 2rem 0;
}

.svp-thanks-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svp-thanks-steps {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.svp-thanks-steps li {
  margin-bottom: 0.75rem;
}

.svp-thanks-steps li:last-child {
  margin-bottom: 0;
}

.svp-thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.svp-thanks-resources {
  max-width: 1000px;
  width: 100%;
}

.svp-thanks-resources-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.svp-thanks-resources-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}

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

.svp-thanks-resource-card {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
  transition: var(--transition-standard);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-text);
}

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

.svp-thanks-resource-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-complementary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.svp-thanks-resource-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.svp-thanks-resource-description {
  margin-bottom: 0;
}

/* Checkout Page */
.svp-checkout {
  padding: 4rem 5%;
  background-color: var(--color-background);
}

.svp-checkout__container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.svp-checkout__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.svp-checkout__order-summary {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
}

.svp-checkout__section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.svp-checkout__cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.svp-checkout-cart-item {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: 1.5rem;
}

.svp-checkout-cart-item__image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-standard);
  overflow: hidden;
}

.svp-checkout-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svp-checkout-cart-item__details {
  flex: 1;
}

.svp-checkout-cart-item__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.svp-checkout-cart-item__price {
  font-weight: 500;
  color: var(--color-primary);
}

.svp-checkout-cart-item__quantity {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.svp-checkout__empty-cart {
  text-align: center;
  padding: 2rem 0;
  color: #999;
  display: none;
}

.svp-checkout__totals {
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 1.5rem;
}

.svp-checkout__total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.svp-checkout__total-row--final {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
}

.svp-checkout-form {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.svp-checkout-form__section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svp-form__row {
  display: flex;
  gap: 1rem;
}

.svp-form__group--half {
  width: 50%;
}

.svp-form__group--third {
  width: calc(33.333% - 0.667rem);
}

.svp-checkout-form__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.svp-checkout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.svp-checkout__security,
.svp-checkout__shipping,
.svp-checkout__questions {
  background-color: white;
  border-radius: var(--border-radius-standard);
  padding: 2rem;
  box-shadow: var(--box-shadow-standard);
}

.svp-checkout__sidebar-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.svp-checkout__security-features,
.svp-checkout__shipping-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svp-checkout__security-features li,
.svp-checkout__shipping-info li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.svp-checkout__security-features i {
  color: var(--color-primary);
}

.svp-checkout__questions p {
  margin-bottom: 1rem;
}

.svp-checkout__questions a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
}

.svp-checkout-submit {
  min-width: 200px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .svp-hero__title {
    font-size: 3rem;
  }
  
  .svp-section-title {
    font-size: 2.25rem;
  }
  
  .svp-legal-content__container {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 992px) {
  .svp-hero {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  
  .svp-hero__content {
    padding-right: 0;
  }
  
  .svp-hero__actions {
    justify-content: center;
  }
  
  .svp-mission__container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .svp-contact-main__container {
    grid-template-columns: 1fr;
  }
  
  .svp-checkout__container {
    grid-template-columns: 1fr;
  }
  
  .svp-footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .svp-footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 4rem;
  }
  
  .svp-nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 400px;
    background-color: white;
    flex-direction: column;
    padding: 5rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .svp-nav__menu.is-active {
    right: 0;
  }
  
  .svp-nav__toggle {
    display: block;
    z-index: 1001;
  }
  
  .svp-nav__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .svp-nav__toggle.is-active span:nth-child(2) {
    opacity: 0;
  }
  
  .svp-nav__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .svp-hero__title {
    font-size: 2.5rem;
  }
  
  .svp-section-title {
    font-size: 2rem;
  }
  
  .svp-testimonials__controls {
    flex-direction: column;
    gap: 1rem;
  }
  
  .svp-timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .svp-timeline-item__date {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-bottom: 1rem;
  }
  
  .svp-timeline-item__content {
    width: 100%;
  }
  
  .svp-journey__timeline::before {
    left: 20px;
  }
  
  .svp-legal-content__container {
    grid-template-columns: 1fr;
  }
  
  .svp-legal-content__navigation {
    position: static;
    margin-bottom: 2rem;
  }
  
  .svp-form__row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .svp-form__group--half,
  .svp-form__group--third {
    width: 100%;
  }
  
  .svp-checkout-form__actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .svp-article__navigation {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .svp-article__more {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --section-spacing: 3rem;
    --element-spacing: 1.5rem;
  }
  
  .svp-hero__title {
    font-size: 2rem;
  }
  
  .svp-section-title {
    font-size: 1.75rem;
  }
  
  .svp-feature-card__image,
  .svp-product-card__image,
  .svp-article-card__image {
    height: 200px;
  }
  
  .svp-cookie-modal__footer {
    flex-direction: column;
  }
  
  .svp-cookie-modal__footer button {
    width: 100%;
  }
  
  .svp-thanks-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .svp-thanks-actions .svp-button {
    width: 100%;
  }
  
  .svp-article__title {
    font-size: 2rem;
  }
  
  .svp-article__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}