/* ===== Global Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
}

/* ===== Header ===== */
.site-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-column img {
  max-height: 70px;
  width: auto;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-navigation a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: color 0.3s;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #007BFF;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease-in-out;
}

.main-navigation a:hover {
  color: #007BFF;
}

.main-navigation a:hover::after {
  width: 100%;
}

/* ===== Section Titles ===== */
.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #111;
  font-weight: 700;
}

.section-content {
  text-align: center;
  font-size: 18px;
  max-width: 850px;
  margin: 0 auto 40px auto;
  color: #555;
}

/* ===== Service Cards ===== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.service-card h2,
.service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.service-card img {
  max-width: 100%;
  border-radius: 8px;
}

/* ===== Call-to-Action Buttons ===== */
.cta-button,
.read-blog-btn {
  display: inline-block;
  padding: 14px 28px;
  margin-top: 20px;
  background: #007BFF;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-button:hover,
.read-blog-btn:hover {
  background: #0056b3;
  transform: translateY(-3px);
}

/* ===== Themed Service Cards ===== */
.service-card.blue {
  background: #007BFF;
  color: #fff;
}

.service-card.yellow {
  background: #ffeb3b;
  color: #333;
}

.service-card.black {
  background: #111;
  color: #fff;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: #007BFF;
  color: #fff;
  border-radius: 12px;
  margin-top: 60px;
}

.cta-section .section-title {
  color: #fff;
}

.cta-section .section-content {
  color: #e9e9e9;
  margin-bottom: 30px;
}
.about-the-author{
    width: 100%;
    background: #F5A6D4;
    padding: 55px;
}