/* Base styles */
body {
    margin: 0;
    padding: 0;
    padding-top: 90px; /* Adjust the top padding accordingly */
}

p {
    font-family: 'Taviraj', serif;
    color: #000000;
    font-weight: normal;
    font-size: 16px;
    margin: 24px 10px;
}

h1, h2, h3, h4 {
    font-family: 'Work Sans', sans-serif;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

.services-title {
  text-align: center;
}

.solution-title {
  text-align: center;
}

.services-list li strong {
    font-size: 20px;
}

.services-list li {
    margin-bottom: 15px;
    list-style-type: none; /* Remove the bullet points */
}

.services-list li ul {
    margin-top: 5px;
    list-style-type: none; /* Remove the bullet points */
}

a.button-container {
  display: flex;
  justify-content: center; /* Center the button horizontally */
  margin-top: 20px;
}

a.book-button {
  display: inline-block;
  padding: 6px 12px; /* Reduced padding */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Added border-color transition */
  cursor: pointer;
  background-color: #FFFFFF; /* White background */
  color: #00204A; /* Navy blue text color */
  border: 1px solid #00204A; /* Navy blue border color */
}

a.book-button:hover {
  background-color: #D3E9F8; /* Light blue background on hover */
  color: #00204A; /* Navy blue text color on hover */
  border-color: #D3E9F8; /* Light blue border color on hover */
  text-decoration: none;
}

/* CTA Group Layout */
.cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

/* Primary Button (Navy) */
.btn.primary {
  background-color: #1e3a8a;
  color: #fff;
}
.btn.primary:hover {
  background-color: #172554;
}

/* Secondary Button (Outline) */
.btn.secondary {
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background-color: #fff;
}
.btn.secondary:hover {
  background-color: #f1f5f9;
}

/* Secondary Fill (Teal) */
.btn.secondary-fill {
  background-color: #0f766e;
  color: #fff;
}
.btn.secondary-fill:hover {
  background-color: #0d5e57;
}

/* Accent Button (Dusty Blue for “Schedule Your Full Strategy Session”) */
.btn.accent {
  background-color: #57789E;
  color: #fff;
}
.btn.accent:hover {
  background-color: #466482;
}

.btn.accent2 {
  background-color: #A96A5A;
  color: #fff;
}
.btn.accent2:hover {
  background-color: #8E5547;
}

/* Service Card Styles */
.service {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 700px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 3rem auto;
}

.service h2 {
  margin-top: 0;
  color: #0f172a;
}

.price {
  font-weight: 700;
  margin: 0.25rem 0;
}

.note {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0;
}

blockquote {
  font-style: italic;
  color: #475569;
  border-left: 4px solid #e2e8f0;
  padding-left: 1rem;
  margin: 1rem 0;
}

/* Footer styles */
.site-footer {
    width: 100%;
    background-color: #434F5B;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Tablet styles */
@media screen and (min-width: 600px) and (max-width: 1023px) {
    body {
        padding-top: 100px;
    }
    h1 {
        font-size: 30px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile styles */
@media screen and (max-width: 599px) {
    body {
        padding-top: 80px;
    }
    h1 {
        font-size: 24px;
    }
    img {
        max-width: 100%;
        height: auto;
    }
}













