:root {
  /* Primary Colors - Tetrad color scheme */
  --primary: #246eb9;
  --primary-dark: #1a5087;
  --primary-light: #4389d0;
  --primary-transparent: rgba(36, 110, 185, 0.7);
  
  --secondary: #b92463;
  --secondary-dark: #871a49;
  --secondary-light: #d0438f;
  --secondary-transparent: rgba(185, 36, 99, 0.7);
  
  --tertiary: #24b973;
  --tertiary-dark: #1a8754;
  --tertiary-light: #43d09b;
  --tertiary-transparent: rgba(36, 185, 115, 0.7);
  
  --quaternary: #b97324;
  --quaternary-dark: #87541a;
  --quaternary-light: #d09b43;
  --quaternary-transparent: rgba(185, 115, 36, 0.7);
  
  /* Neutral Colors */
  --dark: #1a1a2e;
  --gray-dark: #2e2e44;
  --gray: #555565;
  --gray-light: #8a8a9a;
  --light: #f5f5fa;
  
  /* Glassmorphism Variables */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --glass-blur: 8px;
  
  /* Other Variables */
  --border-radius: 12px;
  --border-radius-sm: 6px;
  --border-radius-lg: 20px;
  --transition-speed: 0.3s;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --content-width: 1200px;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--dark);
  background-color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Card Styles */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.button:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.button:hover:after {
  width: 300%;
  height: 300%;
}

.button.is-primary {
  background-color: var(--primary);
  color: white;
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
}

.button.is-secondary {
  background-color: var(--secondary);
  color: white;
}

.button.is-secondary:hover {
  background-color: var(--secondary-dark);
}

.button.is-tertiary {
  background-color: var(--tertiary);
  color: white;
}

.button.is-tertiary:hover {
  background-color: var(--tertiary-dark);
}

.button.is-outlined {
  background-color: transparent;
  border: 2px solid currentColor;
}

.button.is-outlined.is-white {
  color: white;
  border-color: white;
}

.button.is-outlined.is-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.button.is-outlined.is-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.button.is-outlined.is-primary:hover {
  background-color: rgba(36, 110, 185, 0.1);
}

.button.is-medium {
  font-size: 1.1rem;
  padding: 0.85rem 1.75rem;
}

.button.is-large {
  font-size: 1.25rem;
  padding: 1rem 2rem;
}

.button.is-rounded {
  border-radius: 50px;
}

.button.is-fullwidth {
  width: 100%;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand h1 {
  margin: 0;
  color: var(--primary);
}

.navbar-brand h1 span {
  color: var(--secondary);
  font-weight: 700;
}

.navbar-menu {
  display: flex;
}

.navbar-item {
  color: var(--dark);
  padding: 0.5rem 1rem;
  position: relative;
  font-weight: 600;
}

.navbar-item:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-speed) ease;
}

.navbar-item:hover:after {
  width: 80%;
}

.navbar-burger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.navbar-burger span:nth-child(1) {
  top: 8px;
}

.navbar-burger span:nth-child(2) {
  top: 16px;
}

.navbar-burger span:nth-child(3) {
  top: 24px;
}

.navbar-burger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 15px;
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 15px;
}

/* Hero Section */
.hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 80, 135, 0.8) 0%, rgba(135, 26, 73, 0.8) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 8rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero .title,
.hero .subtitle {
  color: white;
  margin-bottom: 1.5rem;
}

.hero .title {
  font-size: 3.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 700px;
  animation: fadeInUp 1.4s ease-out;
}

.hero .buttons {
  animation: fadeInUp 1.6s ease-out;
}

.hero-footer {
  position: relative;
  z-index: 2;
  width: 100%;
}

.indicators {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.progress-indicator {
  flex: 1;
  margin: 0 10px;
  color: white;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  margin: 8px 0;
  overflow: hidden;
}

.progress-value {
  height: 100%;
  background: white;
  border-radius: 3px;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.about-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.about-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.about-section .content h3 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.about-section .content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.image-container {
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.5s ease;
}

.image-container:hover {
  transform: scale(1.02);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background-color: #f9f9ff;
  position: relative;
  overflow: hidden;
}

.services-section:before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-transparent) 0%, rgba(255,255,255,0) 70%);
}

.services-section:after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tertiary-transparent) 0%, rgba(255,255,255,0) 70%);
}

.services-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.services-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* Resources Section */
.resources-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.resources-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.resources-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.resource-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.resource-card a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-card a:hover {
  color: var(--secondary);
}

.resource-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Team Section */
.team-section {
  padding: 6rem 0;
  background-color: #f9f9ff;
}

.team-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.team-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.team-section .subtitle {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.team-section .card-image {
  height: 300px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.team-section .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team-section .card:hover .card-image img {
  transform: scale(1.05);
}

.team-section .card-content h3 {
  color: var(--primary);
}

.team-section .card-content h4 {
  color: var(--secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-section .card-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.partners-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.partners-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.partners-section .subtitle {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partner-card .image-container {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.partner-card .image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-card h3 {
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.partner-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* News Section */
.news-section {
  padding: 6rem 0;
  background-color: #f9f9ff;
}

.news-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.news-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.news-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-section .card-image {
  height: 220px;
}

.news-section .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-section .card-content .subtitle {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.news-section .card-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.news-section .card-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-section .card-content a.button {
  align-self: flex-start;
}

/* Events Section */
.events-section {
  padding: 6rem 0;
  background-color: var(--light);
}

.events-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.events-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.events-calendar {
  margin-bottom: 3rem;
}

.event-item {
  display: flex;
  margin-bottom: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  background-color: var(--primary);
  color: white;
  padding: 1rem;
  text-align: center;
}

.event-date .day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
}

.event-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.event-title {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.event-location {
  color: var(--gray);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.event-location i {
  margin-right: 0.3rem;
  color: var(--secondary);
}

.event-description {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.event-highlight {
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: flex-end;
  min-height: 450px;
}

.event-highlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.event-highlight-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  width: 100%;
}

.event-highlight-content h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.event-highlight-content h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.event-highlight-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
}

.event-highlight-content p i {
  margin-right: 0.5rem;
}

.event-highlight-content .description {
  margin-top: 1rem;
  font-size: 1.1rem;
}

/* Awards Section */
.awards-section {
  padding: 6rem 0;
  background-color: #f9f9ff;
}

.awards-section .title {
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.awards-section .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

.awards-section .subtitle {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.awards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.award-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.award-item .image-container {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-item .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.award-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.contact-section:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tertiary-transparent) 0%, rgba(255,255,255,0) 70%);
}

.contact-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-section p {
  color: var(--gray);
  font-size: 1.1rem;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.3rem;
}

.contact-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--gray);
  font-size: 1rem;
}

.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-form .label {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: 'Nunito', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36, 110, 185, 0.2);
  outline: none;
}

.contact-form .checkbox {
  display: flex;
  align-items: center;
}

.contact-form .checkbox input {
  margin-right: 0.5rem;
}

/* Footer */
.footer {
  padding: 5rem 0 2rem;
  background-color: var(--dark);
  color: white;
  position: relative;
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 33%, var(--tertiary) 66%, var(--quaternary) 100%);
}

.footer .title {
  color: white;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 3px;
}

.social-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: white;
  transition: width 0.3s ease;
}

.social-links a:hover {
  color: white;
}

.social-links a:hover:after {
  width: 100%;
}

.newsletter h3 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter .field {
  margin-bottom: 0;
}

.newsletter .input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.newsletter .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter .button {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.field.has-addons {
  display: flex;
}

.field.has-addons .control {
  margin: 0;
}

.field.has-addons .control:first-child {
  flex: 1;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.success-content {
  max-width: 600px;
}

.success-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.success-content p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Terms and Privacy Pages */
.terms-page,
.privacy-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.terms-page h1,
.privacy-page h1 {
  color: var(--primary);
  margin-bottom: 2rem;
}

.terms-page h2,
.privacy-page h2 {
  color: var(--secondary);
  margin: 2rem 0 1rem;
}

.terms-page p,
.privacy-page p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.terms-page ul,
.privacy-page ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.terms-page li,
.privacy-page li {
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 1023px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  .navbar-menu.is-active {
    display: block;
  }
  
  .navbar-end {
    flex-direction: column;
  }
  
  .navbar-burger {
    display: block;
  }
  
  .hero .title {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.3rem;
  }
  
  .resources-grid,
  .partners-grid,
  .awards-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .event-highlight {
    margin-top: 2rem;
  }
}

@media (max-width: 767px) {
  .hero .title {
    font-size: 2rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .indicators {
    flex-direction: column;
  }
  
  .progress-indicator {
    margin: 0.5rem 0;
  }
  
  .resources-grid,
  .partners-grid,
  .awards-container {
    grid-template-columns: 1fr;
  }
  
  .event-date {
    width: 60px;
    padding: 0.5rem;
  }
  
  .event-date .day {
    font-size: 1.3rem;
  }
  
  .event-date .month {
    font-size: 0.8rem;
  }
  
  .event-content {
    padding: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .contact-item i {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 479px) {
  .hero .buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero .buttons .button {
    width: 100%;
    margin: 0.5rem 0;
  }
  
  .event-item {
    flex-direction: column;
  }
  
  .event-date {
    width: 100%;
    padding: 0.5rem;
    flex-direction: row;
    justify-content: center;
  }
  
  .event-date .day {
    font-size: 1.3rem;
    margin-right: 0.5rem;
  }
  
  .social-links {
    flex-direction: column;
  }
}