/* Base Styles */
:root {
  --primary-color: #4e54c8;
  --primary-light: #8a8edb;
  --primary-dark: #363b8c;
  --secondary-color: #ff6b6b;
  --text-color: #333;
  --text-light: #666;
  --text-dark: #111;
  --background-color: #f8f9fa;
  --background-dark: #e9ecef;
  --white: #fff;
  --black: #000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --gutter: 20px;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--secondary-color);
}

.btn-primary:hover {
  background-color: #ff5252;
}

.btn-secondary {
  background-color: var(--gray-700);
}

.btn-secondary:hover {
  background-color: var(--gray-800);
}

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

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

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

.btn-block {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
}

/* Neon Button */
.neon-button {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  overflow: hidden;
  transition: all 0.3s, box-shadow 0.5s;
  z-index: 1;
}

.neon-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
  z-index: -1;
}

.neon-button:hover {
  color: var(--white);
  box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-light);
}

.neon-button:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--gutter);
}

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

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-color);
  font-weight: 600;
  position: relative;
}

nav a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transition: var(--transition);
}

nav a:hover:after,
nav a.active:after {
  transform: scaleX(1);
}

nav a.active {
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.language-toggle {
  background-color: var(--gray-200);
  color: var(--text-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.language-toggle:hover {
  background-color: var(--gray-300);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.feature-card {
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-text {
  font-size: 1.1rem;
  color: var(--text-light);
}

.cta {
  text-align: center;
  margin-top: 2rem;
}

/* About Products Section */
.about-products {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.about-products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-products p {
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
}

.quality-guarantee, .history {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.quality-guarantee h3, .history h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.quality-guarantee ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.quality-guarantee li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.quality-guarantee i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background-color: var(--white);
}

.products h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

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

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.25rem;
}

.product-card .price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 0 1.5rem;
}

.product-card .description {
  padding: 0 1.5rem 1rem;
  color: var(--text-light);
}

.product-card .btn {
  margin: 0 1.5rem 1.5rem;
}

/* Newsletter Section */
.newsletter {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.newsletter form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
}

.newsletter button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Footer */
footer {
  background-color: var(--gray-800);
  color: var(--gray-300);
  padding: 4rem 0 2rem;
}

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

.footer-column h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-column p {
  margin-bottom: 0.5rem;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column i {
  margin-right: 0.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--gray-700);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid var(--gray-700);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--gray-800);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.cookie-consent a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-consent.show {
  display: block;
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--success-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* Product Detail Page */
.product-detail {
  padding: 3rem 0;
}

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

.breadcrumb a {
  color: var(--text-color);
}

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

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.product-info h1 {
  margin-bottom: 1rem;
}

.product-info .price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.product-rating i {
  color: var(--warning-color);
  margin-right: 0.25rem;
}

.product-rating span {
  margin-left: 0.5rem;
  color: var(--text-light);
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-300);
}

.product-features h3 {
  margin-bottom: 1rem;
}

.product-features ul {
  margin-left: 1.5rem;
}

.product-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.product-features i {
  color: var(--success-color);
  margin-right: 0.5rem;
}

/* Product Tabs */
.product-tabs {
  margin-bottom: 4rem;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--gray-300);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 2rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
}

.tab-btn:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: var(--transition);
}

.tab-btn.active {
  color: var(--primary-color);
}

.tab-btn.active:after {
  background-color: var(--primary-color);
}

.tab-content {
  margin-bottom: 2rem;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.specs-table th, .specs-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
}

.specs-table th {
  width: 30%;
  font-weight: 600;
  color: var(--text-dark);
}

/* Reviews */
.reviews-summary {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.rating-average {
  text-align: center;
}

.rating-average span {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rating-average .stars {
  margin: 0.5rem 0;
}

.rating-average p {
  color: var(--text-light);
  margin-bottom: 0;
}

.rating-bars {
  flex-grow: 1;
  max-width: 400px;
  margin-left: 2rem;
}

.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.rating-bar span {
  width: 60px;
}

.rating-bar .bar {
  flex-grow: 1;
  height: 8px;
  background-color: var(--gray-300);
  border-radius: 4px;
  margin: 0 1rem;
  overflow: hidden;
}

.rating-bar .fill {
  height: 100%;
  background-color: var(--warning-color);
}

.review-list {
  margin-top: 2rem;
}

.review-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-300);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.review-author h4 {
  margin-bottom: 0.25rem;
}

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

/* Related Products */
.related-products {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.related-products h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

/* Cart Page */
.cart-section {
  padding: 3rem 0;
}

.cart-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 0;
}

.cart-empty i {
  font-size: 4rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.cart-empty h2 {
  margin-bottom: 1rem;
}

.cart-empty p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.cart-table th, .cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
}

.cart-table th {
  font-weight: 600;
  color: var(--text-dark);
}

.cart-table .product-item {
  display: flex;
  align-items: center;
}

.cart-table .product-image {
  width: 80px;
  height: 80px;
  margin-right: 1rem;
  box-shadow: none;
}

.cart-table .quantity-input {
  width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  text-align: center;
}

.cart-table .remove-item {
  background: none;
  border: none;
  color: var(--danger-color);
  cursor: pointer;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.coupon {
  display: flex;
  gap: 0.5rem;
}

.coupon input {
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
}

.cart-summary {
  margin-top: 3rem;
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.cart-summary h2 {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.summary-row.total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
  border-bottom: none;
  padding-top: 1.5rem;
}

/* Checkout Page */
.checkout-section {
  padding: 3rem 0;
}

.checkout-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
}

.checkout-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  position: relative;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 15px;
  right: -30px;
  width: 60px;
  height: 2px;
  background-color: var(--gray-300);
  z-index: 1;
}

.step.active:not(:last-child):after {
  background-color: var(--primary-color);
}

.step-number {
  width: 30px;
  height: 30px;
  background-color: var(--gray-300);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.step.active .step-number {
  background-color: var(--primary-color);
}

.step-name {
  font-size: 0.875rem;
  color: var(--text-light);
}

.step.active .step-name {
  color: var(--primary-color);
  font-weight: 600;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
}

.checkout-form h2, .order-summary h2 {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

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

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
}

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

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-300);
}

.checkout-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.checkout-item p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.item-price {
  font-weight: 600;
}

.summary-totals {
  margin-top: 2rem;
}

.secure-checkout {
  margin-top: 3rem;
  text-align: center;
  padding: 1.5rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.secure-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.secure-icons i {
  font-size: 2rem;
  color: var(--text-light);
}

.secure-checkout p {
  margin-bottom: 0;
  color: var(--text-light);
}

/* Success Page */
.success-section {
  padding: 5rem 0;
}

.success-message {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.success-message h1 {
  margin-bottom: 1rem;
}

.success-message p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.success-details {
  margin-bottom: 2.5rem;
}

.next-steps {
  text-align: left;
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.next-steps h2 {
  margin-bottom: 1.5rem;
}

.next-steps ul {
  margin-left: 1.5rem;
}

.next-steps li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.next-steps i {
  color: var(--primary-color);
  margin-right: 0.75rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* About Page */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.about-intro {
  padding: 5rem 0;
}

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

.about-text h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

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

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

.about-text li {
  margin-bottom: 0.5rem;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.values {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.values h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.team {
  padding: 5rem 0;
}

.team h2, .team-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
}

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

.team-member {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin-bottom: 0;
}

.team-member p {
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
}

.social-links a {
  color: var(--text-light);
  transition: var(--transition);
}

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

.achievements {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.achievements h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.achievement-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.partners {
  padding: 5rem 0;
}

.partners h2, .partners > p {
  text-align: center;
  margin-bottom: 2rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner {
  text-align: center;
}

.partner i {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta {
  padding: 5rem 0;
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

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

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

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

.contact-info > p {
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-card:hover {
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.social-connect {
  margin-top: 3rem;
}

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

.contact-form > p {
  margin-bottom: 2rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-200);
  color: var(--text-light);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.faq-section {
  padding: 5rem 0;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background-color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

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

.faq-item.active .faq-question {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--white);
}

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

/* Curriculum Tab */
.curriculum-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-300);
}

.curriculum-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.curriculum-section ul {
  margin-left: 1.5rem;
}

.curriculum-section li {
  margin-bottom: 0.5rem;
}

.curriculum-bonus {
  background-color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-top: 2rem;
}

.curriculum-bonus h3 {
  color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    max-width: 992px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 768px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .product-layout {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    grid-row: 1;
    margin-bottom: 2rem;
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 576px;
  }
  
  header .container {
    flex-direction: column;
    padding: 1rem var(--gutter);
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .newsletter form {
    flex-direction: column;
  }
  
  .newsletter input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter button {
    border-radius: var(--border-radius);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .reviews-summary {
    flex-direction: column;
    align-items: center;
  }
  
  .rating-bars {
    margin-left: 0;
    margin-top: 2rem;
    width: 100%;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .header-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .features-grid, .products-grid, .related-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-table {
    display: block;
    overflow-x: auto;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .product-actions {
    flex-direction: column;
  }
}
