body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin:0;
  background:#ffffff;
  color:#222;
  line-height:1.6;
}

.wrap{max-width:1000px; margin:auto; padding:0 20px;}
.narrow{max-width:750px;}

header{
  border-bottom:1px solid #eee;
  padding:18px 0;
}

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

.logo{height:60px;}

nav a{
  margin-left:20px;
  text-decoration:none;
  color:#444;
  font-size:15px;
}

.hero{
  padding:90px 0 70px;
}

h1{
  font-size:42px;
  margin-bottom:15px;
}

.sub{
  font-size:18px;
  color:#555;
  max-width:700px;
}

.primary{
  display:inline-block;
  margin-top:25px;
  padding:12px 18px;
  background:#5a3d8a;
  color:white;
  text-decoration:none;
  border-radius:6px;
}

section{
  padding:25px 0;   /* try 45, 40, or 35 */
}

h2{
  font-size:28px;
  margin-bottom:20px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.case{
  margin-top:30px;
  max-width:800px;
}

.case h3{
  font-size:22px;
  margin-bottom:12px;
}

.case p{
  margin-bottom:14px;
  color:#444;
}

.what{
  font-style:italic;
  color:#555;
}

.result{
  font-weight:500;
}

.note{
  color:#777;
  font-size:14px;
}

footer{
  padding:40px 0;
  text-align:center;
  color:#777;
  font-size:14px;
}
.divider{
  height:3px;
  background:#5a3d8a;
  width:70%;
  margin:25px auto;   /* was 40 */
}
.workHero{
  margin:30px 0 40px;
}

.workHero img{
  width:100%;
  border:1px solid #eee;
}

.caseGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

@media (max-width:900px){
  .caseGrid{
    grid-template-columns:1fr;
  }
}
.divider{
  height:3px;
  background:#5a3d8a; /* logo/button purple */
  width:70%;
  margin:40px auto;
}
.caseImg{
  width:80%;          /* try 85%, 75%, 70%, 60% */
  aspect-ratio:1/1;
  object-fit:cover;
  border:1px solid #eee;
  margin:0 auto 16px auto;  /* centers it */
  display:block;
}
.buttonRow{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:20px;
}
/* HERO layout */
.heroGrid{
  display:grid;
  grid-template-columns: 1.3fr 1fr;
  gap:50px;
  align-items:center;
}

.heroImage img{
  width:80%;          /* try 85%, 75%, 70%, 60% */
  aspect-ratio:1/1;
  object-fit:cover;
  border:1px solid #eee;
  margin-left:auto;   /* keeps it right-aligned */
}

/* ABOUT layout */
.aboutGrid{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:50px;
  align-items:center;
}

.aboutImage img{
  width:80%;          /* try 85%, 75%, 70%, 60% */
  aspect-ratio:1/1;
  object-fit:cover;
  border:1px solid #eee;
  margin-left:auto;   /* keeps it right-aligned */
}

/* Mobile stacking */
@media (max-width:900px){
  .heroGrid,
  .aboutGrid{
    grid-template-columns:1fr;
  }
}
.navButtons{
  display:flex;
  gap:4px;
}
.navBtn{
  width:110px;              /* makes all buttons same width */
  text-align:center;        /* centers the text */
  padding:10px 0;
  background:#5a3d8a;
  color:white;
  text-decoration:none;
  border-radius:6px;
  font-size:14px;
}
h1, h2{
  color:#5a3d8a;  /* same purple as buttons */
}
.toolsGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.toolsGrid h3{
  margin-bottom:8px;
}
.buttonRow .primary{
  width:200px;        /* try 200, 220, or 240 */
  text-align:center;
  padding:12px 0;
}