
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo {
  height: 50px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
nav a:hover {
  color: #cb0073;
}

/* Hero Section */
.hero {
  background: url('/Computerlink.cc/images/hero-static.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70vh;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero a {
  background-color: #cb0073;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}
.hero a:hover {
  background-color: #a0005c;
}

/* Sections */
.section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 1rem;
  color: #cb0073;
}
.card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
footer {
  background: #333;
  color: #ccc;
  padding: 40px;
  text-align: center;
}
footer a {
  color: #cb0073;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
