<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Base styles */
:root {
      --primary-color: #9fb4c7;
    --primary-dark: #7d92a4;
    --secondary-color: #f4f6f8;
    --text-color: #3c4247;
    --light-text: #5f6a74;
    --accent-color: #c8d6e6;
  
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  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(--secondary-color);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
}

.logo svg {
  width: 28px;
  height: 28px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
  transition: var(--transition);
}

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

/* Hero section */
.hero {
  padding: 60px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

/* Carousel styles */
.hero-carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  height: 400px;
}

.carousel-slide {
  min-width: 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.carousel-prev,
.carousel-next {
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: white;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: white;
  transform: scale(1.2);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.cta-primary {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.cta-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: 1px solid var(--primary-color);
  transition: var(--transition);
}

.cta-secondary:hover {
  background-color: rgba(74, 124, 89, 0.1);
}

/* Features section */
.features {
  padding: 60px 0;
  background-color: white;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.feature:hover {
  box-shadow: var(--box-shadow);
}

.feature svg {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.feature h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

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

/* Footer */
footer {
  background-color: #f1f1f1;
  padding: 40px 0;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
}

.footer-logo svg {
  width: 24px;
  height: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

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

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

/* Responsive styles */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  nav ul {
    gap: 15px;
  }
  
  .carousel-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .carousel-container {
    height: 250px;
  }
  
  .carousel-prev,
  .carousel-next {
    width: 30px;
    height: 30px;
  }
}

/* Product Showcase Section */
.product-showcase {
  padding: 80px 0;
  background-color: #f9f7f4;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--primary-dark);
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: zoom-in;
  display: block;
  text-decoration: none;
  position: relative;
}

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

.product-image {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

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

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

.product-info {
  padding: 15px;
  text-align: center;
  background-color: #fff;
}

.product-info h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }
  
  .product-image {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .product-image {
    height: 280px;
  }
}</pre></body></html>