
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: white;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  border-bottom: 1px solid #eee;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

p {
  margin-bottom: 1em; /* or 16px, etc. */
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid #B20C10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-section h1 {
  font-size: 26px;
}

.logo-section p {
  color: gray;
  font-size: 14px;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

nav a:hover {
  color: #B20C10;
}

.hero {
  background: linear-gradient(to bottom right, #fff8dc, white);
  padding: 100px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.tag {
  color: #B20C10;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.hero-text h2 {
  font-size: 64px;
  line-height: 1.1;
  margin: 20px 0;
}

.hero-text h2 span {
  color: #B20C10;
}

.hero-text p {
  color: #555;
  font-size: 18px;
  max-width: 550px;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.primary-btn,
.secondary-btn {
  padding: 15px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.primary-btn {
  background: #B20C10;
  color: white;
}

.secondary-btn {
  border: 2px solid #FEBE11;
  color: #B20C10;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.hero-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.hero-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

.card-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.card-logo {
  width: 70px;
  height: 70px;
  background: white;
  border: 2px solid #B20C10;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 22px;
  overflow: hidden;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature {
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.feature-red {
  background: #B20C10;
  color: white;
}

.feature-yellow {
  background: #FEBE11;
}

.feature-light {
  background: #f3f3f3;
}

.details {
  background: linear-gradient(to bottom right, #fff8dc, white);
  padding: 100px 0;
}

.details h2 {
  font-size: 42px;
  margin-bottom: 50px;
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  border: 1px solid #eee;
  border-radius: 28px;
  padding: 40px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  margin-bottom: 30px;
}

.service-card button {
  background: #B20C10;
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.service-card button:hover {
  background: #FEBE11;
  color: #000;
}

.premium {
  padding: 100px 0;
}

.premium-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.premium h2 {
  font-size: 42px;
  margin-bottom: 50px;
  text-align: center;
}

.neo-card {
  border: 1px solid #eee;
  border-radius: 28px;
  padding: 40px;
  transition: 0.3s;
}

.neo-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.neo-card p {
  color: #666;
  margin-bottom: 30px;
}

.neo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.neo-card button {
  background: #FEBE11;
  color: #000;
  border: none;
  padding: 14px 26px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.service-card button:hover {
  background: #B20C10;
  color: white;
}

.about {
  padding: 100px 0;
  text-align: center;
}

.about h2 {
  font-size: 42px;
  margin-bottom: 50px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  position: relative;
  border-radius: 24px;
  padding: 35px;
  color: white;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-card h3,
.about-card p {
  position: relative;
  z-index: 2;
}

.about-card h3 {
  margin-bottom: 15px;
}

.about-card p {
  color: white;
}

.about-card:nth-child(1) {
  background-image: url('images/about1.jpg');
}

.about-card:nth-child(2) {
  background-image: url('images/about2.jpg');
}

.about-card:nth-child(3) {
  background-image: url('images/about3.jpg');
}

.about-card:hover {
  transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);

}

.site-footer {
  background: #B20C10;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 12px;
  border-bottom: 2px solid white;
  padding-bottom: 6px;
}

.footer-section p,
.footer-section a {
  display: block;
  color: white;
  margin: 6px 0;
  text-decoration: none;
}

.footer-section a:hover {
  color: #FEBE11;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid white;
  padding-top: 15px;
  font-size: 14px;
  color: white;
}

footer {
  border-top: 1px solid #eee;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

footer p {
  color: white;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 900px) {

  .hero-content,
  .cards-grid,
  .about-grid,
  .footer-content {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-text h2 {
    font-size: 46px;
  }

  nav {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }
}