* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Georgia', serif; }

body, .page {
  margin: 0;
  width: 100vw;
  min-height: 100vh;
  max-width: none;
  border-radius: 0;
  box-shadow: none;
}

body {
  background: black; 
  color: black;      
  padding: 0; 
}
.page {
  width: 100%;
  max-width: none;
  margin: 0;
  background: white; 
  box-shadow: 0 0 0 8px black; 
  padding-bottom: 40px;
}
/* header */
.header {
  background: teal; 
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  font-size: 28px;
  color: seagreen; 
  font-weight: bold;
  text-shadow: 1px 1px 0 white;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: darkslategray; 
  font-weight: 600;
}
/* footer */
.footer {
  margin-top: 30px;
  background: lightseagreen; 
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  color: darkgreen; 
}
/* Home*/
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 30px;
}
.course-card {
  background: white; 
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 0 lightgray; 
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #ddd;
}
.course-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.course-card .body {
  padding: 18px;
  text-align: center;
}
.course-card h3 {
  color: rebeccapurple; 
  margin-bottom: 8px;
  font-weight: bold;
}
.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 30px darkgray; 
  z-index: 3;
}

.fee-hero {
  background-image: url('images/images.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  color: white; 
  text-align: center;
}
.fee-panel {
  margin: 24px auto;
  max-width: 760px;
  background: white;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 4px 8px darkgray; 
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.fee-table th {
  background: yellowgreen; 
  color: white;          
  padding: 8px;
}
.fee-table td {
  padding: 10px;
  background: whitesmoke; 
}

/* Pictures page: flex with wrapping and rounded images */
.pics-grid {
  display: flex;
  gap: 28px;
  padding: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.pics-grid .pic {
  width: 260px;
  height: 220px;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: 0 6px 12px darkgray; 
}
.pics-grid img { width: 100%; height: 100%; object-fit: cover; display:block; }

/* contact panel */
.contact-wrap {
  padding: 40px 20px;
}
.contact-card {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  padding: 26px;
  border-radius: 6px;
  box-shadow: 0 4px 8px darkgray; 
  text-align: center;
}