:root {
  --primary-color: #0e6e96;
  --primary-dark: #075678;
  --primary-light: #52a9cc;
  --secondary-color: #ffa500;
  --secondary-dark: #e09000;
  --secondary-light: #ffbf40;
  --accent-color: #1fc078;
  --text-color: #333333;
  --text-light: #666666;
  --text-lightest: #888888;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #e9ecef;
  --border-color: #dee2e6;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-headings: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
  --border-radius: 4px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: white;
}

.btn-tertiary {
  color: var(--text-color);
  background-color: var(--bg-dark);
  border-color: var(--border-color);
}

.btn-tertiary:hover {
  background-color: var(--border-color);
}

.hidden {
  display: none !important;
}

/* Header & Navigation */
header {
  background-color: 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 15px;
}

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

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu li {
  margin-left: 1.5rem;
}

.menu a {
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.menu a:hover, .menu a.active {
  color: var(--primary-color);
}

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

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-icon svg {
  margin-right: 0.25rem;
}

#cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.language-switch button {
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-color);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition);
}

.language-switch button:hover {
  background-color: var(--bg-light);
}

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

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

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

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

.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: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(14, 110, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.feature-icon svg {
  color: var(--primary-color);
}

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

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.stat h4 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

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

.cta h3 {
  margin-bottom: 1.5rem;
}

/* About Courses Section */
.about-courses {
  padding: 5rem 0;
}

.course-description {
  max-width: 900px;
  margin: 0 auto;
}

.course-description h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.quality-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  background-color: rgba(14, 110, 150, 0.1);
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

.badge svg {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Editor Word Section */
.editor-word {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.editor-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.editor-content p {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.editor-content::before {
  content: '"';
  font-size: 6rem;
  color: rgba(14, 110, 150, 0.1);
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: Georgia, serif;
}

.editor-info {
  text-align: right;
}

.editor-info span {
  display: block;
}

.editor-info span:first-child {
  font-weight: bold;
}

.editor-info span:last-child {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Products Section */
.products {
  padding: 5rem 0;
}

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

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

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

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

.product-image {
  height: 200px;
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.product-description {
  color: var(--text-light);
  margin-bottom: 1rem;
  min-height: 4.8rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  color: var(--text-lightest);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

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

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

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

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

.breadcrumb > *:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: var(--text-lightest);
}

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

.main-image {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-lightest);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.product-price-container {
  margin-bottom: 1.5rem;
}

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

.product-tax {
  font-size: 0.875rem;
  color: var(--text-lightest);
}

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

.product-summary {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  color: var(--text-color);
}

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

.product-features ul {
  list-style: none;
}

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

.product-features li svg {
  color: var(--accent-color);
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.product-tabs {
  margin-bottom: 3rem;
}

.tabs-header {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
  white-space: nowrap;
}

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

.tab-panel {
  display: none;
}

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

.module {
  margin-bottom: 2rem;
}

.module h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.module ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.module li {
  margin-bottom: 0.5rem;
}

.requirements-section {
  margin-bottom: 2rem;
}

.note-box {
  background-color: rgba(255, 165, 0, 0.1);
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.note-box h4 {
  color: var(--secondary-dark);
  margin-bottom: 0.5rem;
}

.teacher-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.teacher-card {
  display: flex;
  align-items: flex-start;
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.placeholder-image {
  width: 80px;
  height: 80px;
  background-color: var(--border-color);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.teacher-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.teacher-position {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.teacher-bio {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.guest-lecturers {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--border-radius);
}

.guest-lecturers h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.guest-lecturers p {
  margin-bottom: 0;
}

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

.testimonial {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: rgba(14, 110, 150, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  font-family: Georgia, serif;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  font-style: italic;
}

.author-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.related-products {
  margin-top: 4rem;
}

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

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

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

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

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

.related-product h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1rem;
  min-height: 4rem;
}

.related-price {
  padding: 0 1rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.related-product .btn {
  display: block;
  margin: 0 1rem 1rem;
  text-align: center;
}

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

.cart-section h1 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.empty-cart-message svg {
  color: var(--text-lightest);
  margin-bottom: 1rem;
}

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

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

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

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  font-weight: bold;
}

.cart-item {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr 1fr;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}

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

.cart-product img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-right: 1rem;
}

.cart-product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.cart-price, .cart-total {
  font-weight: 500;
}

.cart-quantity {
  display: flex;
  align-items: center;
}

.quantity-input {
  width: 50px;
  text-align: center;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin: 0 0.5rem;
}

.quantity-btn {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

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

.cart-summary {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.cart-totals {
  margin-bottom: 2rem;
}

.subtotal-row, .tax-row, .total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.total-row {
  font-size: 1.25rem;
  font-weight: bold;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
}

.might-like {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.might-like h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

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

.checkout-section h1 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.checkout-steps {
  display: flex;
  margin-bottom: 2rem;
}

.step {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  z-index: 1;
}

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

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

.step.active .step-name {
  color: var(--text-color);
  font-weight: 500;
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 110, 150, 0.2);
}

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

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

.required {
  color: var(--danger-color);
}

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

.order-summary {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  align-self: flex-start;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.order-items {
  margin-bottom: 2rem;
}

.order-item {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-right: 1rem;
}

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

.order-item-info {
  flex: 1;
}

.order-item-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.order-item-price {
  color: var(--text-light);
  font-size: 0.875rem;
}

.order-item-quantity {
  margin-left: auto;
  padding-left: 1rem;
  color: var(--text-light);
  font-size: 0.875rem;
}

.order-totals {
  font-size: 1rem;
}

.grand-total {
  font-size: 1.25rem;
  font-weight: bold;
}

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

.success-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.success-icon svg {
  color: var(--success-color);
}

.success-message h1 {
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.success-text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.success-info {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.next-steps {
  margin-bottom: 3rem;
}

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

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

.step-item {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.step-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 110, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-icon svg {
  color: var(--primary-color);
}

.step-item h3 {
  margin-bottom: 1rem;
}

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

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

.recommended-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

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

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

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

.contact-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.contact-info-section {
  padding: 5rem 0;
}

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

.contact-details h2, .contact-form-container h2 {
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  margin-bottom: 2rem;
}

.method-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 110, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.method-icon svg {
  color: var(--primary-color);
}

.method-info h3 {
  margin-bottom: 0.5rem;
}

.method-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.social-contact h3 {
  margin-bottom: 1.5rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-light);
  color: white;
}

.social-link svg {
  margin-right: 0.5rem;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.faq-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

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

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

.faq-item h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

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

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

.about-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

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

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

.story-text h2 {
  margin-bottom: 2rem;
}

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

.story-milestones h3 {
  margin-bottom: 1.5rem;
}

.milestone {
  display: flex;
  margin-bottom: 1.5rem;
}

.milestone-year {
  min-width: 60px;
  font-weight: bold;
  color: var(--primary-color);
}

.mission-values {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

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

.mission-block, .values-block {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.mission-block p {
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 110, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.value-icon svg {
  color: var(--primary-color);
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.team-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px 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:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 500;
}

.team-member p:nth-of-type(2) {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem;
}

.member-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.member-social a:hover {
  background-color: var(--primary-light);
}

.member-social a:hover svg {
  color: white;
}

.partners-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.partners-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.partners-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

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

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

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

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

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

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

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

.recognition-item {
  display: flex;
  align-items: flex-start;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.recognition-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 110, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.recognition-icon svg {
  color: var(--primary-color);
}

.recognition-content h3 {
  margin-bottom: 0.5rem;
}

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

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

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

/* Footer */
footer {
  background-color: #222;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo img {
  width: 120px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: white;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info li svg {
  margin-right: 0.75rem;
  margin-top: 4px;
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

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

.social-links a svg {
  color: white;
}

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

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-content p {
  flex: 1;
  margin-bottom: 0;
  min-width: 300px;
}

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

.cookie-content a {
  font-size: 0.875rem;
  display: block;
  margin-top: 0.5rem;
}

/* Notifications */
.notification {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.notification p {
  margin-bottom: 0;
}

.success-notification {
  background-color: var(--success-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .product-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-content, .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .order-summary {
    position: static;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .header .container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .menu li {
    margin: 0.5rem;
  }
  
  .features-grid, .stats-container {
    grid-template-columns: 1fr;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 2fr 1fr 1fr;
  }
  
  .cart-quantity, .cart-total {
    display: none;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .tabs-header {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.4rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .product-grid, .related-grid, .team-grid, .partners-categories, .recognitions-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-header, .cart-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .cart-product {
    flex-direction: column;
    align-items: center;
  }
  
  .cart-product img {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .cart-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Placeholder for team images */
.team-member {
  position: relative;
}

.team-member img {
  width: 100%;
  height: auto;
  display: block;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card, .product-card, .stat, .team-member {
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.feature-card:nth-child(1), .product-card:nth-child(1), .stat:nth-child(1), .team-member:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2), .product-card:nth-child(2), .stat:nth-child(2), .team-member:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3), .product-card:nth-child(3), .stat:nth-child(3), .team-member:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4), .product-card:nth-child(4), .stat:nth-child(4), .team-member:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5), .product-card:nth-child(5), .stat:nth-child(5), .team-member:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6), .product-card:nth-child(6), .stat:nth-child(6) {
  animation-delay: 0.6s;
}
