:root {
  --primary: #0a1f44;
  --accent: #2ea3f2;
  --bg: #f5f5f5;
  --text: #333333;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: var(--bg);
}

header {
  background: var(--primary);
  color: white;
  padding: 1rem;
  text-align: center;
}

header h1 {
  font-size: 28px;
  margin: 0;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding-left: 13px;
}

nav a:hover{
  text-decoration: underline;
}

.hero {
  background: linear-gradient(rgba(10,31,68,0.7), rgba(10,31,68,0.7)),
              url('https://images.pexels.com/photos/5452201/pexels-photo-5452201.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
  color: white;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.btn {
  background: var(--accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: #2389ce;
  box-shadow: 0 0 12px rgba(46, 163, 242, 0.6);
}

section {
  padding: 4rem 2rem;
}

h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

footer {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 1rem;
}

/* 🍪 Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 31, 68, 0.95);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9999;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

#cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

#cookie-banner .btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  #cookie-banner .btn {
    margin-top: 0.75rem;
  }
}
