:root {
  --primary: #dc2626;
  --secondary: #f8fafc;
  --accent: #059669;
  --dark: #0f172a;
  --light: #f8fafc;
  --gradient: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.navbar-brand img { height: 45px; }

.nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  transition: color 0.3s;
  margin: 0 0.5rem;
}

.nav-link:hover { color: var(--primary) !important; }

.btn-primary {
  background: var(--primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero p {
  font-size: 1.25rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 4rem;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  padding-top: 1.3rem;
}

.service-icon i {
  font-size: 40px;
  color: #b91c1c;
}


.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}


@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .section { padding: 4rem 0; margin-top: 3.1rem;}
  .service-card { padding: 2rem; }
}


/* CSS */
.service-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.image-side {
  flex: 1 1 400px;
}

.image-side img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.text-side {
  flex: 1 1 400px;
}

.section-label {
  font-size: 14px;
  font-weight: bold;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-side h2 {
  font-size: 28px;
  margin: 15px 0;
  line-height: 1.3;
  color: #000;
}

.text-side p {
  font-size: 1.25rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #b91c1c;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
} 

.btn:hover {
  background-color: #991b1b;
}
