/* Reset and Base Styles */
:root {
  --primary-color: #2a5d84;
  --primary-dark: #1c4060;
  --primary-light: #3a7ca5;
  --secondary-color: #e63946;
  --secondary-dark: #c1272d;
  --secondary-light: #f87c84;
  --accent-color: #f8c537;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --bg-color: #fff;
  --bg-light: #f8f9fa;
  --bg-dark: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.25rem;
  --border-radius-lg: 0.5rem;
  --transition: all 0.3s ease;
  --font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --line-height: 1.5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input[type="submit"] {
  cursor: pointer;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

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

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

.btn-secondary {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

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

.btn-primary svg,
.btn-secondary svg {
  margin-right: 0.5rem;
}

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

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

/* Header Styles */
header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

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

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

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-color);
}

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

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

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

#cart-count {
  display: inline-block;
  background-color: var(--secondary-color);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
}

.hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

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

.benefit-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: rgba(42, 93, 132, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
}

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

.benefit-item p {
  color: var(--text-light);
}

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

.stat-item {
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.stat-text {
  color: var(--text-light);
  font-weight: 500;
}

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

.cta-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cta-block p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.about-products p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quality-guarantees {
  margin-top: 3rem;
  margin-bottom: 2rem;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.quality-guarantees h3 {
  margin-bottom: 1.5rem;
}

.quality-guarantees ul {
  list-style: none;
}

.quality-guarantees li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.quality-guarantees li svg {
  margin-right: 1rem;
  color: var(--success-color);
  flex-shrink: 0;
}

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

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

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

.small-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

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

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

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

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

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

.product-card p:not(.price) {
  padding: 0 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.product-actions {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-actions a,
.product-actions button {
  flex: 1;
  min-width: 120px;
}

/* Date Time Block */
.date-time-block {
  margin-top: 2rem;
  padding: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 0 2rem;
}

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

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

.footer-logo p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-links h4::after,
.footer-legal h4::after,
.footer-contact h4::after,
.footer-social h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: white;
  text-decoration: underline;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 93, 132, 0.95);
  color: white;
  z-index: 1001;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-configure,
.btn-cookie-reject {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie-accept {
  background-color: var(--success-color);
  color: white;
}

.btn-cookie-accept:hover {
  background-color: #218838;
}

.btn-cookie-configure {
  background-color: #6c757d;
  color: white;
}

.btn-cookie-configure:hover {
  background-color: #5a6268;
}

.btn-cookie-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-more-info {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-more-info a {
  color: white;
  text-decoration: underline;
}

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

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

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

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

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

.product-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

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

.product-description {
  margin-bottom: 2rem;
}

.product-description h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.product-description ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.product-description li {
  margin-bottom: 0.5rem;
}

.quantity-selector {
  margin-bottom: 1.5rem;
}

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

.quantity-selector select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background-color: white;
}

.product-additional-info {
  margin-bottom: 4rem;
}

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

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

.tab-button:hover {
  color: var(--primary-color);
}

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

.tab-pane {
  display: none;
}

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

.tab-pane h3 {
  margin-bottom: 1.5rem;
}

.tab-pane p {
  margin-bottom: 1.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 9px;
  width: 2px;
  height: 100%;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 5px;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}

.timeline-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

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

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

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

.cart-empty {
  text-align: center;
  padding: 3rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
}

.cart-empty p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.cart-item-image img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

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

.item-price {
  color: var(--text-light);
}

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

.quantity-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

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

.quantity-value {
  margin: 0 0.75rem;
  font-weight: 500;
}

.cart-item-total {
  font-weight: 700;
  color: var(--primary-color);
}

.remove-item {
  background-color: transparent;
  border: none;
  color: var(--text-lighter);
  cursor: pointer;
  transition: var(--transition);
}

.remove-item:hover {
  color: var(--error-color);
}

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

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

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

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

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

.cart-actions a {
  flex: 1;
  text-align: center;
}

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

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

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

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

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

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

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

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 0.75rem;
}

.step-text {
  font-weight: 500;
}

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

.checkout-step.active .step-text {
  color: var(--primary-color);
  font-weight: 700;
}

.step-connector {
  height: 2px;
  flex: 1;
  background-color: var(--border-color);
  margin: 0 1rem;
}

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

.checkout-form h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.checkout-form h2:first-child {
  margin-top: 0;
}

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

.form-group {
  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);
  background-color: white;
}

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

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

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

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.form-actions a,
.form-actions button {
  flex: 1;
}

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

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

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

.checkout-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-image {
  width: 60px;
  margin-right: 1rem;
}

.checkout-item-image img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.checkout-item-details {
  flex: 1;
}

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

.checkout-item-total {
  font-weight: 700;
  color: var(--primary-color);
}

.checkout-totals {
  margin-bottom: 1.5rem;
}

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

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

.checkout-info {
  background-color: white;
  padding: 1.25rem;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

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

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

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

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.success-icon svg {
  width: 80px;
  height: 80px;
  color: var(--success-color);
}

.success-section h1 {
  margin-bottom: 1.5rem;
}

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

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

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

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

/* Contact Page */
.contact-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

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

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

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

.contact-info {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
}

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

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

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

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

.contact-text h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

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

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

.contact-form-container {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

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

.contact-form-container > p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  margin-bottom: 1.5rem;
}

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

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

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

.contact-map h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

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

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

.contact-cta p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

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

.cta-buttons .btn-primary:hover {
  background-color: var(--bg-light);
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: white;
  border-color: white;
}

.cta-buttons .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* About Page */
.about-hero {
  background-color: var(--primary-color);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

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

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

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

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

.about-intro-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-intro-stats {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
}

.about-intro-stats .stat-item {
  margin-bottom: 1.5rem;
  padding: 0;
  box-shadow: none;
  background-color: transparent;
}

.about-intro-stats .stat-item:last-child {
  margin-bottom: 0;
}

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

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

.mission-item {
  padding: 2.5rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.mission-item h2 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.mission-item h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.mission-item ul {
  list-style-type: none;
  padding-left: 0;
}

.mission-item li {
  margin-bottom: 0.75rem;
}

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

.about-approach h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.approach-intro,
.approach-conclusion {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.approach-conclusion {
  margin-top: 3rem;
}

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

.approach-pillar {
  text-align: center;
  padding: 2.5rem;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
}

.approach-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pillar-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.approach-pillar h3 {
  margin-bottom: 1.5rem;
}

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

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

.team-intro {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

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

.team-member p:first-of-type {
  padding: 0 1.25rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-member p:not(:first-of-type) {
  padding: 0 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.member-social {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 0.75rem;
}

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

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

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

.about-clients h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.clients-intro {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.sector {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

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

.sector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  background-color: white;
  color: var(--primary-color);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.sector h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

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

.about-cta h2 {
  margin-bottom: 1rem;
}

.about-cta p {
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .product-detail-content {
    grid-template-columns: 1fr;
  }
  
  .product-image {
    margin-bottom: 2rem;
  }
  
  .checkout-content {
    grid-template-columns: 1fr;
  }
  
  .checkout-summary {
    position: static;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .about-intro-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 1rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .benefits-grid,
  .stats-container {
    grid-template-columns: 1fr;
  }
  
  .cart-item {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "image details"
      "image quantity"
      "total total"
      "remove remove";
    gap: 1rem;
  }
  
  .cart-item-image {
    grid-area: image;
  }
  
  .cart-item-details {
    grid-area: details;
  }
  
  .cart-item-quantity {
    grid-area: quantity;
  }
  
  .cart-item-total {
    grid-area: total;
    text-align: right;
  }
  
  .remove-item {
    grid-area: remove;
    text-align: right;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .benefit-item,
  .product-card,
  .mission-item,
  .approach-pillar,
  .team-member,
  .sector {
    padding: 1.5rem;
  }
  
  .date-time-block {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

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

.product-card,
.benefit-item,
.stat-item,
.team-member,
.approach-pillar,
.sector {
  animation: fadeIn 0.6s ease-out;
}

.product-card:nth-child(2),
.benefit-item:nth-child(2),
.stat-item:nth-child(2),
.team-member:nth-child(2),
.approach-pillar:nth-child(2),
.sector:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:nth-child(3),
.benefit-item:nth-child(3),
.stat-item:nth-child(3),
.team-member:nth-child(3),
.approach-pillar:nth-child(3),
.sector:nth-child(3) {
  animation-delay: 0.2s;
}

.product-card:nth-child(4),
.benefit-item:nth-child(4),
.stat-item:nth-child(4),
.team-member:nth-child(4),
.sector:nth-child(4) {
  animation-delay: 0.3s;
}

.product-card:nth-child(5),
.team-member:nth-child(5),
.sector:nth-child(5) {
  animation-delay: 0.4s;
}
