/* ===== Global Settings ===== */
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #0056ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Hero Section ===== */
.hero-section {
  background: #f3f6fc;
  padding: 100px 20px;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #555;
}

.hero-section .cta-button {
  background-color: #0056ff;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-section .cta-button:hover {
  background-color: #003ecc;
}

/* ===== Services/Strategy Section ===== */
.strategy-section {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.strategy-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.strategy-box {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===== Contact Section ===== */
.contact-section {
  background-color: #f3f6fc;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-section p {
  margin-bottom: 30px;
  color: #555;
}

.contact-section .contact-button {
  background: #0056ff;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}

/* ===== Footer ===== */
.site-footer {
  background: #1a1a1a;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
}

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *