:root{
  --primary:#3b82f6;
  --bg:#fafafa;
  --text:#263238;
  --muted:#475569;
  --card:#ffffff;
  --radius:12px;
  --shadow:0 12px 30px rgba(16,24,40,0.06);
  --shadow-sm:0 8px 20px rgba(16,24,40,0.04);
}

/* Section */
.layout358_1-section{
  padding:3.5rem 5%;
  font-family:"Segoe UI", Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* Header */
.layout358_1-header{
  max-width:900px;
  margin:0 auto 2.5rem;
  text-align:center;
}
.layout358_1-tagline{
  font-weight:600;
  margin-bottom:0.5rem;
  color:var(--muted);
}
.layout358_1-heading{
  font-size:2rem;
  font-weight:800;
  margin-bottom:1rem;
  color:#071133;
  line-height:1.15;
}
.layout358_1-text{
  font-size:1rem;
  color:var(--muted);
}

/* Card layout */
.layout358_1-card{
  display:grid;
  grid-template-columns:1fr;
  gap:2rem;
  align-items:center;
  max-width:1100px;
  margin:0 auto;
}

/* Content */
.layout358_1-card-content{
  display:flex;
  flex-direction:column;
  gap:1rem;
  padding:1rem;
}
.layout358_1-subtitle{
  font-weight:600;
  color:var(--muted);
}
.layout358_1-card-heading{
  font-size:1.5rem;
  font-weight:800;
  margin-bottom:0.5rem;
  color:#0b2540;
}
.layout358_1-card-text{
  font-size:1rem;
  color:var(--muted);
  margin-bottom:1rem;
}

/* Card image */
.layout358_1-card-image{
  overflow:hidden;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(15,23,42,0.03);
}
.layout358_1-card-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius:var(--radius);
  transition:transform 400ms ease;
}
.layout358_1-card-image img:hover{
  transform:scale(1.03);
}

/* Buttons */
.layout358_1-buttons{
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
}
.btn{
  display:inline-block;
  padding:0.55rem 1rem;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease;
  box-shadow:var(--shadow-sm);
  border:none;
  cursor:pointer;
}
.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 36px rgba(15,23,42,0.06);
}
.btn-secondary{
  background:var(--primary);
  color:#fff;
}
.btn-link{
  background:rgba(59,130,246,0.06);
  color:var(--primary);
  border:2px solid rgba(37,99,235,0.12);
  padding:0.5rem 0.95rem;
  border-radius:999px;
  box-shadow:none;
}

/* Responsive: two-column on wider screens */
@media(min-width:768px){
  .layout358_1-card{
    grid-template-columns:1fr 1fr;
    gap:3rem;
    align-items:center;
  }
  .layout358_1-card-content{ padding:1.5rem; }
  .layout358_1-card-image img{ min-height:260px; }
}

/* Smaller screens tweaks */
@media(max-width:900px){
  .layout358_1-section{ padding:2.5rem 4%; }
  .layout358_1-card-image img{ max-height:360px; }
}
@media(max-width:480px){
  .layout358_1-heading{ font-size:1.6rem; }
  .btn, .btn-link{ padding:0.5rem 0.9rem; font-size:0.95rem; }
}
