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

/* Basic Setup */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333; /* Dark gray for text */
  background-color: #f9f9f9; /* Light gray background */
}

/* Container */
.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

/* Header */
header {
  background-color: #000000; /* Black */
  color: #ffffff; /* White */
  padding: 20px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header nav {
  margin-top: 10px;
}

header nav a {
  color: #ffffff; /* White */
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Logo */
.logo {
  max-width: 150px;
  margin-bottom: 10px;
}

/* Hero Section */
.hero {
  background: #ffffff; /* White */
  color: #000000; /* Black */
  padding: 80px 0;
  text-align: center;
  border: 2px solid #000000; /* Black border for contrast */
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
}

/* About and Services Section */
.about, .services, .contact {
  padding: 60px 0;
  background-color: #ffffff; /* White background */
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.about h2, .services h2, .contact h2 {
  color: #000000; /* Black */
  margin-bottom: 20px;
  text-align: center;
}

.about p, .contact p {
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Uniform Image Sizes for All Sections */
section img {
  width: 100%; /* Ensure full width */
  max-width: 600px;  /* Limit the maximum width to 600px */
  height: auto;     /* Maintain aspect ratio */
  margin: 0 auto 20px; /* Center the images and add space below */
  display: block;    /* Block-level for centered alignment */
}

/* Services Section */
.service-column {
  background-color: #ffffff; /* White */
  color: #000000; /* Black */
  border: 2px solid black;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 10px;
}

.service-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-column p {
  font-size: 1rem;
}

/* Career Insights Section */
.career-insights {
  padding: 60px 0;
  background-color: #ffffff; /* White background */
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.career-insights h2 {
  color: #000000; /* Black */
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.career-insights p {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.career-insights a {
  color: #000000; /* Black */
  text-decoration: none;
  font-weight: bold;
}

.career-insights a:hover {
  text-decoration: underline;
}

.career-roles {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.career-roles h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.career-roles ul {
  list-style-type: disc;
  padding-left: 20px;
}

.career-roles li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Our Thinking Section */
.our-thinking {
  padding: 60px 0;
  background-color: #ffffff; /* White background */
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.our-thinking h2 {
  color: #000000; /* Black */
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.our-thinking p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.thinking-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.thinking-card {
  background-color: #ffffff; /* White */
  color: #000000; /* Black */
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.thinking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.thinking-card p {
  font-size: 1.1rem;
}

/* Footer */
footer {
  background-color: #000000; /* Black */
  color: #ffffff; /* White */
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 2px solid #000000; /* Black border at the top for separation */
}

footer p {
  font-size: 1rem;
}










