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

body {
  padding-top: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #111;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav a {
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #ec2513;
}

.btn-primary {
  background: #ec2513;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient( to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4), transparent );
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  margin-bottom: 30px;
  font-size: 20px;
  opacity: 0.85;
}


section {
  padding: 100px 60px;
}

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

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #c61d0f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(236, 37, 19, 0.3);
}

#experience {
  background: #f8f6f6;
}

#experience h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 60px;
  font-size: 18px;
  opacity: 0.7;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature span {
  color: #ec2513;
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
}

.feature h3 {
  margin-bottom: 10px;
}
.masters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}