/* Main Styles */
:root {
  --primary: #ffc107;
  --white: #ffffff;
  --black: #212121;
  --gray-light: #f5f5f5;
  --gray: #9e9e9e;
  --gray-dark: #616161;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--black);
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--black);
}

.btn-primary:hover {
  background-color: #e6ac00;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

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

.toast {
  visibility: hidden;
  position: fixed;
  bottom: var(--spacing-4);
  left: 50%;
  transform: translateX(-50%);
  background: rgb(251, 197, 0);
  color: #000000;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  z-index: 1000;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  max-width: 80%;
  font-family: 'Source Sans Pro', sans-serif;
}

.toast.show {
  visibility: visible;
  animation: fadeInOut 3s ease-in-out;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
}