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

/* Body */
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #e6f0fa, #a8c9f1);
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section */
section { padding:60px 20px; max-width:1100px; margin:0 auto; }
h1,h2,h3 { font-weight:700; line-height:1.2; margin-bottom:20px; }
h1 { font-size:3rem; }
h2 { font-size:2rem; color:#334e68; }
h3 { font-size:1.5rem; color:#486581; }

/* Added for better text container on desktop */
.text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  line-height: 1.6;
}

/* Adjusted p max-width to fill container */
p { max-width: 100%; font-size:1.1rem; color:#334e68; margin-bottom:20px; }

/* Hero */
.hero {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(31,38,135,0.1);
  border-radius: 15px;
  margin: 60px auto 80px auto;
  padding: 80px 30px;
  text-align: center;
  max-width: 900px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #013a63;
  margin-bottom: 20px;
  white-space: nowrap;
}
.hero h2 {
  font-weight: 400;
  font-size: 1.3rem;
  color: #334e68;
  margin-bottom: 40px;
}
.btn-primary {
  background: linear-gradient(90deg, #0099ff, #0d47a1);
  color:white;
  font-weight:600;
  font-size:1.2rem;
  padding:14px 40px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  box-shadow: 0 4px 15px rgba(0,153,255,0.4);
  transition: background 0.3s;
}
.btn-primary:hover { background: linear-gradient(90deg, #0d47a1, #0099ff); }

/* Section title */
.section-title { text-align:center; margin-bottom:40px; }

/* Two columns */
.two-columns { display:flex; flex-wrap:wrap; gap:40px; max-width:1000px; margin:0 auto; }
.two-columns .text, .two-columns .image { flex:1 1 45%; }
.two-columns img { max-width:100%; border-radius:15px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

/* Features */
.features { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:30px; }
.feature-card {
  background:white;
  border-radius:15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding:30px 25px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform:translateY(-8px); box-shadow:0 8px 30px rgba(0,0,0,0.15); }
.feature-card h3 { color:#007ac9; margin-bottom:15px; }
.feature-card p { color:#556677; }

/* Scenarios */
.scenarios { display:flex; flex-wrap:wrap; gap:40px; justify-content:space-between; }
.scenario-item {
  flex:1 1 300px;
  max-width:300px;
  background:white;
  padding:25px 20px;
  border-radius:15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  text-align:center;
}
.scenario-item img { width:200px; height:200px; object-fit:contain; margin-bottom:20px; }

/* Advantages */
.advantages ul { max-width:700px; margin:0 auto; list-style:none; padding-left:30px; }
.advantages li { position:relative; padding-left:30px; margin-bottom:15px; }
.advantages li::before {
  content:"✓";
  color:#007ac9;
  font-weight:bold;
  position:absolute;
  left:0; top:2px;
  font-size:1.2rem;
}

/* Vision */
.vision {
  background: linear-gradient(135deg, #5e9de2, #397ab8);
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  padding: 60px 20px;
  text-align: center;
  border-radius: 15px;
  max-width: 900px;
  margin: 60px auto;
}
.vision p { font-size:1.3rem; max-width:700px; margin:0 auto; }

/* Contact */
.contact {
  max-width:900px;
  margin:0 auto 100px auto;
  background:white;
  padding:40px 30px;
  border-radius:15px;
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
  text-align:center;
}
.contact p { font-size:1.1rem; color:#334e68; margin-bottom:15px; text-align:center; margin-left:auto; margin-right:auto; }
.contact a.button {
  background:#007ac9;
  color:white;
  padding:14px 40px;
  border-radius:50px;
  font-size:1.2rem;
  font-weight:600;
  display:inline-block;
  transition:background 0.3s;
  text-decoration:none;
}
.contact a.button:hover { background:#005f8a; }
.contact a.contact-link { color:#007ac9; text-decoration:none; }
.contact a.contact-link:hover { text-decoration:underline; }

/* Animation */
.animate-fade-in { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-fade-in.show { opacity:1; transform:translateY(0); }

/* Responsive */
@media (max-width:768px) {
  .hero h1 { white-space:normal; font-size:2rem; }
  .two-columns { flex-direction:column; }
  .scenarios { flex-direction:column; align-items:center; }
  .scenario-item { max-width:100%; }
  .scenario-item img { width:100%; height:auto; max-width:200px; }
}
