/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f9ff;
  color: #222;
  line-height: 1.6;
}

/* HEADER + NAVIGATION */
header {
  background: #003f66;
  color: white;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
}

header p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

nav {
  margin-bottom: 1rem;
}

.nav-button {
  display: inline-block;
  margin: 0 8px;
  padding: 8px 16px;
  background: #00aaff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.nav-button:hover {
  background: #007bb5;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #00aaff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,170,255,0.4);
}

.cta-button:hover {
  background: #007bb5;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,123,181,0.6);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0,63,102,0.7), rgba(0,63,102,0.7)), url('ice-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* SECTION BASE */
section {
  max-width: 960px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

section h2 {
  color: #003f66;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #00aaff;
  padding-bottom: 0.4rem;
}

/* CARDS (Value Prop + Products) */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.card h3 {
  color: #003f66;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 1.05rem;
  color: #333;
}

/* TESTIMONIALS */
.testimonials blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: #444;
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #00aaff;
}

.testimonials cite {
  display: block;
  text-align: right;
  font-weight: 600;
  color: #003f66;
}

/* CONTACT SECTION */
.contact p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

/* ORDER FORM */
.order-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.order-section label {
  font-weight: 600;
  color: #003f66;
}

.order-section input, 
.order-section select {
  padding: 10px;
  border: 1px solid #bbb;
  border-radius: 6px;
  font-size: 1rem;
}

.order-section input:focus,
.order-section select:focus {
  border-color: #00aaff;
  outline: none;
  box-shadow: 0 0 4px rgba(0,170,255,0.4);
}

/* FOOTER */
footer {
  background: #003f66;
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 4rem;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.3);
}

footer a {
  color: #00aaff;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  header h1 {
    font-size: 1.8rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
  .cta-button {
    font-size: 1rem;
    padding: 10px 22px;
  }
}
