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

/* Global Styles */
body {
  font-family: "Arial", sans-serif;
  color: #666057;
}

img {
  border-radius: 10px;
}

/* Navbar */
.navbar {
  background-color: white;
}

.nav-link {
  color: #666057;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover {
  color: white;
  background-color: #666057;
}

/* Main Section */
.main-section {
  background-color: #f9f6f1;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.main-section h1 {
  color: #666057;
  line-height: 1.2;
  margin: 1rem 0;
}

.main-section h2 {
  color: #666057;
}

.main-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn-warning {
  background-color: #f0ad4e;
  color: white;
  border: none;
}

.btn-warning:hover {
  background-color: #ec971f;
  transform: scale(1.1);
  transition: transform 0.3s, background-color 0.3s;
}

/* Introduction Section */
.introduction-section {
  background-color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.introduction-section h2 {
  color: #666057;
}

.introduction-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #7a746b;
}

/* Services Section */
.services-section {
  background-color: #f1ece5;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.services-section img {
  height: 200px;
  width: 100%;
  object-fit: cover; /* Maintain aspect ratio and crop if needed */
}

.services-section h5 {
  color: #666057;
  font-size: 1.2rem;
}

.services-section p {
  color: #7a746b;
}

/* Contact Me Section */
.contact-me-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.contact-me-section h2 {
  font-size: 2rem;
  color: #666057;
  margin-bottom: 1rem;
}

.contact-me-section p {
  font-size: 1rem;
  color: #7a746b;
  line-height: 1.6;
}

.contact-me-section small {
  color: #666057;
  font-weight: bold;
}

.contact-me-section a {
  font-weight: bold;
  text-decoration: underline;
  color: #f0ad4e;
}

.contact-me-section img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* FAQ Accordion Styling */
.accordion-button {
  background-color: #e2d8c8;
  color: #666057;
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: #666057; /* Highlight active question */
  color: white;
}

.accordion-body {
  font-size: 1rem;
  color: #7a746b;
  background-color: #f9f6f1;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd; /* Add subtle separation */
}

/* About Page Styling */
.about-hero {
  background: url("./images/logo.png") no-repeat center center;
  background-size: contain; /* Adjusts to fit the banner */
  height: 400px;
  background-color: #e2d8c8;
}

.about-title h1 {
  font-size: 3rem;
  color: #666057;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
}

.about-section {
  background-color: #f9f6f1;
  padding: 4rem 2rem;
  border-radius: 15px;
  line-height: 1.8;
}

.about-section h2 {
  color: #666057;
  margin-bottom: 1.5rem;
}

.about-section p {
  color: #7a746b;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-section img {
  max-width: 90%;
  margin-bottom: 2rem;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section i {
  color: #666057;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Footer */
footer {
  padding: 1rem 0;
  background-color: #666057;
  color: white;
  text-align: center;
  font-size: 0.9rem;
}

.footer-logo img {
  max-height: 50px;
  object-fit: contain;
}

/* Cards */
.card {
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card img {
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card h5 {
  color: #666057;
  font-size: 1.25rem;
}

.card ul {
  margin-top: 1rem;
  font-size: 1rem;
  color: #7a746b;
  list-style: none;
  padding: 0;
}

.card ul li {
  margin-bottom: 0.5rem;
}

/* Shadow Card Styling */
.shadow-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.shadow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(to right, transparent, #666057, transparent);
  width: 60%;
  margin: 4rem auto;
  opacity: 0.6;
}

/* Contact Page */
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the widget */
}
