/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f4f9fc;
  color: #1f2f3d;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #dce9f7;
  padding: 30px 0 20px 0;
  border-bottom: 2px solid #bcd3ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.logo {
  height: 100px;
  margin-bottom: 10px;
}

.company-name {
  font-size: 3.5rem;
  font-weight: bold;
  color: #24588a;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex-direction: column;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #1f2f3d;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #367ecf;
}

/* Hero Section */
.hero {
  background: url('https://i.ibb.co/Dfc3ZtQx/Whisk-afd6504609.jpg') no-repeat center center/cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 51, 102, 0.65);
  color: white;
  padding: 40px;
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
}

/* Capabilities Section */
.capabilities {
  padding: 60px 0;
  background-color: #e8f1fa;
  text-align: center;
}

.capabilities h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  max-width: 320px;
}

.card h3 {
  color: #24588a;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #dce9f7;
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #4a5e74;
}

.subtle-link {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #24588a;
  text-decoration: none;
}

.subtle-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cards {
    flex-direction: column;
    gap: 20px;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .logo {
    height: 80px;
  }
}
