body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
}
/* Headings */
    h1, h2, h3, h4, h5, h6, .subheading {
      font-family: 'EB Garamond', serif; /* Changed from Times New Roman */
    }


.menu-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-logo {
  max-width: 250px;
}

.menu-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.menu-links a {
  text-decoration: none;
  color: #090909;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.menu-links a:hover,
.menu-links a.active {
  color: #fca311;
}

/* Hero Section */
.drafting-hero {
  background-color: #ffffff;
  color: #fca311;
  text-align: center;
  padding: 80px 20px;
}

.drafting-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.drafting-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px auto;
  width: 50%;
}

.separator hr {
  flex: 1;
  border: none;
  border-top: 2px solid #fca311;
}

.separator img {
  width: 40px;
  height: 30px;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  font-size: 2rem;
  color: #0c0c0c;
  margin-bottom: 20px;
  text-align: center;
}

.document-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.document-list li {
  background-color: #f8f8f8;
  padding: 16px 20px;
  border-left: 5px solid #fca311;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.document-list li:hover {
  background-color: #f1f1f1;
}

.cta-drafting {
  text-align: center;
  background: #ffffff;
  color: #0e0d0d;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 40px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  background: #fca311;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background: #ffb347;
  transform: scale(1.05);
}
.redirect-button:hover {
  background-color: #cacfd2;
  color: #090909
  
}
/* Footer */
.custom-footer {
  background-color: #f4f4f4;
  color: #0d1321;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1 220px;
}

.footer-logo {
  max-width: 320px;
}

.footer-block {
  flex: 1 1 220px;
}

.footer-block h4 {
  color: #0d1321;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-block p,
.footer-block li {
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block i {
  margin-right: 8px;
  color: #fca311;
}

.footer-block a {
  color: #fca311;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-block a:hover {
  color: #0d1321;
  text-shadow: 0 0 3px rgba(252, 163, 17, 0.6);
  text-decoration: underline;
}

.footer-block ul li {
  position: relative;
  transition: transform 0.2s ease, color 0.3s ease;
}

.footer-block ul li:hover {
  color: #fca311;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 16px;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

.footer-socials {
  margin-top: 12px;
}

.footer-socials a {
  color: #0d1321;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #fca311;
  transform: scale(1.2);
}

@keyframes fadeIn {
  from { transform: translateY(15px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
