:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #f8f9fa;
  --dark: #2c3e50;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Adamina", serif;
  font-weight: 700;
}

/* Navbar */
.navbar-nav {
  gap: 10px;
}
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  position: fixed;
  top: 0;
  transition: top 0.4s;
  padding: 1rem 0;
  z-index: 999;
}

.navbar-brand span {
  color: #d82b2b;
  font-weight: 700;
}

.nav-link.active,
.nav-link.active:hover {
  color: #007bff !important;
  font-weight: 600;
  border-bottom: 2px solid #007bff;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  padding: 10px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero h3 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 30px;
}

.hero_img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: white;
}

.features-section h2 {
  color: var(--primary);
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.feature-item {
  background: #d1d1d1;
  padding: 30px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.feature-item h5 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Estate Planning Cards */
.cards-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.estate-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.estate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.estate-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.estate-card-text {
  padding: 30px;
}

.estate-card h5 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  background-color: white;
}

.why-us-section img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.why-us-section h4 {
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #34495e 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.faq-section h2 {
  color: var(--primary);
  margin-bottom: 50px;
}

.faq-item {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h5 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h3 {
    font-size: 1.2rem;
  }

  .features-section h2,
  .cta-section h3 {
    font-size: 2rem;
  }

  .trust-section,
  .faq-section {
    padding: 60px 0;
  }
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
  background-color: white;
}

.trust-section img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.trust-section h5 {
  color: var(--primary);
  margin-top: 25px;
  margin-bottom: 15px;
}

.trust-section ul {
  padding-left: 20px;
}

.trust-section li {
  margin-bottom: 8px;
}

.benefits-list {
  list-style-type: none;
  padding-left: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}
