/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto+Slab:wght@500;700;800&display=swap');

:root {
  --primary-color: #1E3A8A; /* Blue 900 */
  --secondary-color: #2563EB; /* Blue 600 */
  --accent-color: #F59E0B; /* Amber 500 */
  --light-color: #EFF6FF; /* Blue 50 */
  --dark-color: #0F172A; /* Slate 900 */
  --gradient-primary: linear-gradient(135deg, #2563EB 0%, #1E3A8A 100%);
  --hover-color: #1E40AF; /* Blue 800 */
  --background-color: #F8FAFC; /* Slate 50 */
  --text-color: #334155; /* Slate 700 */
  --border-color: rgba(37, 99, 235, 0.2);
  --divider-color: rgba(30, 58, 138, 0.1);
  --shadow-color: rgba(15, 23, 42, 0.1);
  --highlight-color: #FBBF24; /* Amber 400 */
  --main-font: 'Open Sans', sans-serif;
  --alt-font: 'Roboto Slab', serif;
}

body {
  font-family: var(--main-font);
  background-color: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--alt-font);
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.font-alt {
  font-family: var(--alt-font);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.875rem 2.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px var(--shadow-color);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--hover-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3);
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-color);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  border-top: 4px solid var(--accent-color);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 2rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: var(--dark-color);
  border-radius: 4px;
  border: none;
  display: inline-block;
  font-weight: 700;
  font-family: var(--main-font);
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: var(--highlight-color);
  transform: translateY(-1px);
}

.cookie-btn-alt {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cookie-btn-alt:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 8px 24px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  background-color: var(--light-color);
  color: var(--secondary-color);
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid var(--border-color);
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  background: rgba(15, 23, 42, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.nav-link {
  color: var(--text-color);
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}