/* Global Styles */
:root {
  --gold: #B89D4F;
  --cream: #F5F2E6;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --light-gray: #f5f2e6;
  --font-main: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--dark-gray);
  background: var(--white);
  font-size: 18px;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Top Bar */
.top-bar {
  background: var(--dark-gray);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}

.top-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lang-toggle button {
  background: transparent;
  color: var(--white);
  margin-left: 10px;
  font-weight: 600;
}

.accessibility button {
  background: var(--gold);
  color: var(--dark-gray);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 8px;
  font-weight: bold;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 60px;
}

.logo h1 {
  font-size: 28px;
  color: var(--gold);
}

.tagline {
  font-size: 14px;
  color: var(--dark-gray);
  font-style: italic;
}

.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--dark-gray);
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  background: var(--cream);
}

.hero-content {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hero-logo {
  height: 80px;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark-gray);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-gray);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark-gray);
}

/* Sections */
.section-light {
  padding: 60px 0;
  background: var(--white);
}

.section-dark {
  padding: 60px 0;
  background: var(--gold);
  color: var(--dark-gray);
}

.section-dark h2, .section-dark h3 {
  color: var(--dark-gray);
}

.container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 32px;
}

.container p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

/* Cards */
.card-grid, .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card, .service-card {
  background: var(--light-gray);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3, .service-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* Pricing Table */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.pricing-table th {
  background-color: #B89D4F;
  color: white;
  padding: 15px;
  text-align: center;
  font-weight: 600;
}

.pricing-table td {
  border: 1px solid #B89D4F;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: #333;
}

.pricing-table td small {
  font-size: 14px;
  color: #666;
}