
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  background: #f5f1e8;
  font-family: 'Crimson Text', serif;
  color: #2c2416;
  overflow-x: hidden;
}

.main-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}


.header {
    background: #c62828;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    color: gold;
    font-size: 22px;
    font-weight: bold;
}

.menu-icon {
    width: 30px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 4px;
    background: white;
    margin: 5px 0;
}

.side-menu {
    position: fixed;
    top: 60px;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #b71c1c;
    transition: 0.4s;
    padding-top: 20px;
}

.side-menu a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
}

.side-menu a:hover {
    background: #8e0000;
}


section {
  padding: 4rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #8b0000;
  margin-bottom: 0.5rem;
  text-align: center;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: #d4af37;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.intro-section {
  background: white;
  border-top: 4px solid #d4af37;
  border-bottom: 4px solid #d4af37;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.intro-text p {
  margin-bottom: 1.5rem;
}

.intro-decoration {
  text-align: center;
  font-size: 4rem;
  color: #d4af37;
  opacity: 0.3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: linear-gradient(135deg, #fff9e6 0%, #fffaf0 100%);
  padding: 2rem;
  text-align: center;
  border: 2px solid #d4af37;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #8b0000;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
}

.map-section {
  background: #f5f1e8;
}

#map-container {
  width: 100%;
  height: 500px;
  border: 4px solid #d4af37;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tet-section {
  background: linear-gradient(135deg, #fff9e6 0%, #fffaf0 100%);
  border-top: 4px solid #d4af37;
}

.tet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.tet-card {
  background: white;
  padding: 2.5rem;
  border-left: 5px solid #8b0000;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.tet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  border-left-color: #d4af37;
}

.tet-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #8b0000;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tet-card ul {
  list-style: none;
}

.tet-card li {
  padding: 0.6rem 0;
  font-size: 1.05rem;
  padding-left: 1.5rem;
  position: relative;
}

.tet-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.footer {
    background-color: #991b1b;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}