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

:root {
  --gradient-start: #f5d020;
  --gradient-end: #f7971e;
  --text-dark: #2c2c2c;
  --text-light: #666;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--gradient-end);
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 20px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

/* Section Styles */
section {
  padding: 60px 0;
}

section:nth-child(even) {
  background: var(--bg-white);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

h3 {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--text-dark);
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* Content Images */
.content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 12px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

th, td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

th {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  font-weight: 600;
}

tr:last-child td {
  border-bottom: none;
}

/* FAQ */
.faq-item {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--text-dark);
}

/* Disclaimer Box */
.disclaimer-box {
  background: linear-gradient(135deg, rgba(245, 208, 32, 0.1), rgba(247, 151, 30, 0.1));
  border-left: 4px solid var(--gradient-end);
  padding: 25px;
  margin: 40px 0;
  border-radius: 8px;
}

.disclaimer-box p {
  margin-bottom: 0;
  color: var(--text-dark);
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 151, 30, 0.3);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: white;
  margin-top: 0;
  margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--gradient-start);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 14px;
}

/* Thank You Page */
.thank-you-container {
  text-align: center;
  padding: 100px 20px;
}

.thank-you-container h1 {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Policy Pages */
.policy-content {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.policy-content h2 {
  margin-top: 40px;
  font-size: 28px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  nav ul {
    gap: 15px;
  }
  
  .header-content {
    justify-content: center;
    text-align: center;
  }
  
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 10px;
  }
}
