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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #2c3e50;
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1a1a2e;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  color: #2c3e50;
  font-size: 1.0625rem;
}

a {
  color: #ab8e2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1a1a2e;
}

button, .btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: #ab8e2c;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

button:hover, .btn:hover {
  background-color: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.2);
}

button:active, .btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: #16213e;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
}

.btn-outline {
  background-color: transparent;
  color: #ab8e2c;
  border: 2px solid #ab8e2c;
}

.btn-outline:hover {
  background-color: #ab8e2c;
  color: #ffffff;
}

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

/* Header & Navigation */
.header {
  background-color: #1a1a2e;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  color: #ab8e2c;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tagline {
  font-size: 0.875rem;
  color: #ab8e2c;
  margin-left: 0.5rem;
  opacity: 0.9;
}

.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav li a {
  color: #f8f9fa;
  font-weight: 500;
  position: relative;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav li a:hover {
  color: #ab8e2c;
  border-bottom-color: #ab8e2c;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ab8e2c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #2c3e50 100%);
  color: #f8f9fa;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(171, 142, 44, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #f8f9fa;
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: #d0d0d0;
  font-size: 1.375rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero .btn {
  margin-right: 1rem;
  margin-top: 1rem;
}

.hero .btn:last-child {
  margin-right: 0;
}

/* Sections */
section {
  padding: 5rem 1.5rem;
}

section.alt {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 0;
}

.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
  margin: 3rem 0;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(26, 26, 46, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: 1rem;
}

.card-header {
  padding: 2rem 2rem 0 2rem;
}

.card-header h3 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.card-body {
  padding: 0 2rem;
  flex-grow: 1;
}

.card-body p {
  color: #555;
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1.5rem 2rem 2rem 2rem;
  border-top: 1px solid #e8e8e8;
}

.card-footer a {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.card-footer a:hover {
  gap: 0.75rem;
}

/* Blog & Article List */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.article {
  background-color: #ffffff;
  border-radius: 6px;
  padding: 2rem;
  border-left: 4px solid #ab8e2c;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.06);
  transition: all 0.3s ease;
}

.article:hover {
  box-shadow: 0 8px 16px rgba(26, 26, 46, 0.12);
  transform: translateX(4px);
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  margin-bottom: 1rem;
}

.article h3 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 1rem;
}

.article-excerpt {
  color: #555;
  margin-bottom: 1rem;
}

.article-date {
  background-color: #f0f0f0;
  color: #1a1a2e;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.article-link {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.article-link:hover {
  gap: 0.75rem;
}

/* Footer */
.footer {
  background-color: #1a1a
