/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(45deg, rgba(227, 174, 4, 0.8), rgba(18, 7, 94, 0.8)),
              url('bostitch_group_1_.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo img {
  max-height: 50px;
}

.whatsapp-btn {
  background-color: #dbad14;
  color: white;
  padding: 10px 16px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.whatsapp-btn i {
  margin-right: 8px;
}

/* Main Layout */
.main {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 20px;
}

/* Left side */
.main-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Right side */
.main-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main-right h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.main-right p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  padding: 0 10px;
}

/* Email Subscription */
.subscribe {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  background-color: white;
  padding: 20px 30px;
  border-radius: 65px;
}

.subscribe input[type="email"] {
  width: 300px;
  max-width: 100%;
  border: none;
  border-radius: 40px;
  padding: 10px 15px;
  outline: none;
  font-size: 1rem;
}

.subscribe button {
  padding: 10px 25px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 65px;
  cursor: pointer;
  font-weight: bold;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 1.5rem;
  text-decoration: none;
}

/* Facebook Page Styling */
.fb-page {
  max-width: 100%;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .main-left,
  .main-right {
    width: 100%;
    padding: 0 10px;
  }

  .main-right h1 {
    font-size: 2rem;
    margin-top: 20px;
  }

  .main-right p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .subscribe {
    flex-direction: column;
    padding: 15px 20px;
    width: 100%;
    border-radius: 10px;
  }

  .subscribe input[type="email"],
  .subscribe button {
    width: 100%;
  }

  .social-icons a {
    font-size: 1.3rem;
    margin: 0 8px;
  }

  .fb-page {
    width: 100% !important;
  }
}
.footer {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}


