:root {
  --primary-blue: #1849A9;
  --primary-purple: #a7177c;
  --secondary-blue: #667eea;
  --secondary-purple: #764ba2;
  --accent-color: #74b9ff;
  --text-dark: #222a32;
  --text-medium: #555;
  --text-light: #bdc3c7;
}

body {
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 76px;
  color: var(--text-dark);
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: var(--text-dark);
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 43px;
  color: var(--text-dark);
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  color: var(--text-dark);
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  color: var(--text-dark);
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--text-dark);
}

p {
  opacity: .9;
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--text-dark);
}

a {
  opacity: .8;
  color: var(--primary-blue);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  text-decoration: underline;
  transition: all 0.3s ease;
}

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

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  opacity: .9;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: var(--text-dark);
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
}

.navigation-light {
  background: rgba(255, 255, 255, 0.95);
}

.navigation-logo-container {
  float: left;
  padding-left: 20px;
}

.navigation-logo {
  height: 40px;
  width: auto;
}

.navigation-links {
  float: right;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.navigation-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.navigation-link:hover {
  color: var(--primary-blue);
  opacity: 1;
}

/* Hero Section */
.hero-section {
  padding: 120px 20px 60px 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 70vh;
}

.hero-text-container {
  flex: 1;
  min-width: 400px;
}

.hero-text-container h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 32px;
}

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

.hero-cta-button {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(24, 115, 169, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(24, 115, 169, 0.4);
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 100px 20px 40px 20px;
  }
  
  .hero-text-container {
    min-width: unset;
  }
  
  .hero-text-container h1 {
    font-size: 2.5rem;
  }
  
  .navigation-links {
    display: none;
  }
  
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Product Cards */
.product-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  padding: 60px 20px 40px 20px;
  margin-top: 80px;
}

.footer-contact-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding-bottom: 40px;
}

.footer-info-container {
  max-width: 1200px;
  margin: auto;
}

.footer-info-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

.footer-info-column {
  text-align: left;
}

.footer-info-link {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-info-link:hover {
  opacity: 1;
  transform: translateX(5px);
}

/* Utility Classes */
.w-inline-block {
  display: inline-block;
}

.w--current {
  color: var(--primary-blue);
}

.w-row::after {
  content: "";
  display: table;
  clear: both;
}

.w-col {
  float: left;
  position: relative;
  width: 100%;
}

.w-col-3 {
  width: 25%;
}

@media (max-width: 991px) {
  .w-col-stack {
    width: 100% !important;
    left: auto !important;
    right: auto !important;
  }
}
