@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Poppins:wght@500;700;800&display=swap');

:root {
  --primary-color: #F43F5E; /* Rose 500 */
  --secondary-color: #8B5CF6; /* Violet 500 */
  --accent-color: #14B8A6; /* Teal 500 */
  --light-color: #FFF1F2; /* Rose 50 */
  --dark-color: #1E1B4B; /* Indigo 950 */
  --gradient-primary: linear-gradient(135deg, #F43F5E 0%, #8B5CF6 100%);
  --hover-color: #E11D48; /* Rose 600 */
  --background-color: #FAFAF9; /* Stone 50 */
  --text-color: #44403C; /* Stone 700 */
  --border-color: rgba(244, 63, 94, 0.2);
  --divider-color: rgba(139, 92, 246, 0.15);
  --shadow-color: rgba(30, 27, 75, 0.1);
  --highlight-color: #FBBF24; /* Amber 400 */
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Poppins', sans-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;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--alt-font);
  color: var(--dark-color);
  line-height: 1.2;
}

.font-alt {
  font-family: var(--alt-font);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.3);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--hover-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.4);
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, var(--dark-color), #2E1065);
  color: #ffffff;
  padding: 1.2rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  border-top: 4px solid var(--accent-color);
}

.cookie-btn {
  cursor: pointer;
  padding: 0.6rem 1.8rem;
  margin: 0.5rem;
  background-color: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  border: none;
  display: inline-block;
  font-weight: 700;
  font-family: var(--main-font);
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.cookie-btn:hover {
  background-color: #0D9488;
  transform: scale(1.05);
}

.cookie-btn-alt {
  background-color: transparent;
  color: #E2E8F0;
  border: 2px solid #64748B;
}

.cookie-btn-alt:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  border: 1px solid var(--light-color);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.icon-wrapper {
  background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
  color: var(--primary-color);
  width: 5rem;
  height: 5rem;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 4px rgba(244, 63, 94, 0.1);
  border: 1px solid var(--border-color);
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(139, 92, 246, 0.7) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 700;
  font-family: var(--alt-font);
  transition: color 0.3s ease;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -6px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}