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

/* Body styling */
body {
  font-family: 'helvetica', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px; /* Prevent content from touching screen edge */
}

/* Wrapper */
.wrapper {
  display: flex;
  flex-wrap: nowrap;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
}

/* Image box */
.image-box {
  flex: 1;
  min-width: 35%;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content box */
.content-box {
  flex: 1;
  padding: 60px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text styling */
.brand {
  color: #ef7f21;
}

h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

h2 {
  font-size: 20px;
  color: #475569;
  margin-bottom: 10px;
}

.tagline {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ef7f21;
}

.description {
  font-size: 16px;
  margin-bottom: 10px;
}

.highlight {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 20px;
}

/* Button */
.btn {
  background: #ef7f21;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: ruby;
}


.btn:hover {
  opacity: 0.9;
}

.btn-group{
  margin: 5px;
}
/* ===== Mobile Responsive Styles ===== */
@media (max-width: 768px) {
  body {
    padding: 10px;
    height: auto;
  }

  .wrapper {
    flex-direction: column;
    border-radius: 16px;
  }

  .image-box {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
  }

  .image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .content-box {
    padding: 24px;
    text-align: left;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 18px;
  }

  .tagline {
    font-size: 20px;
  }

  .description,
  .highlight {
    font-size: 14px;
  }

   .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    /* text-align: center; */
    
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
  }
}
