a:link {
	color: #84414A;
	text-decoration: underline;
	}
a:visited { 
	color: #84414A;
	text-decoration: underline; 
	}
a:hover {
	color: #666666;
	text-decoration: underline;
	}
a:active { 
	color: #84414A;
	text-decoration: underline; 
	}
	
.textVerd { 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color:#000000;
	line-height:14px;
	}
	
.textVerdBold { 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 17px;
	color:#112269;
	line-height:14px;
	font-weight: bold;
	}
	
.textVerdBold2 { 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 19px;
	color:#112269;
	line-height:14px;
	font-weight: bold;
	}

td.box4grey
{
	border-style: solid;
	background-color:#FFFFFF;
	border-top-width: 1px;
	border-top-color: #D5D5D5;
	border-right-width: 1px;
	border-right-color: #D5D5D5;
	border-left-width: 1px;
	border-left-color: #D5D5D5;
	border-bottom-width: 1px;
	border-bottom-color: #D5D5D5;
}

td.box4green
{
	border-style: solid;
	background-color:#D7E8A1;
	border-top-width: 1px;
	border-top-color: #B0D144;
	border-right-width: 1px;
	border-right-color: #B0D144;
	border-left-width: 1px;
	border-left-color: #B0D144;
	border-bottom-width: 1px;
	border-bottom-color: #B0D144;
}

td.boxBlack
{
	border-style: solid;
	background-color:#EEF7D0;
	border-top-width: 0px;
	border-top-color: #000000;
	border-right-width: 1px;
	border-right-color: #000000;
	border-left-width: 0px;
	border-left-color: #000000;
	border-bottom-width: 0px;
	border-bottom-color: #000000;
}.grid-1 {
     display: block;
     width: 100%;

.card img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  margin: auto;
  display: block;
}
}
.debutante-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.debutante-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

/* 🔥 THIS FIXES ALL CROPPING ISSUES */
.debutante-card img {
  width: 100%;
  height: auto; /* keeps full image */
  object-fit: contain;
  background: #f4f4f4;
  padding: 10px;
}

/* Caption */
.debutante-card p {
  padding: 12px;
  font-weight: bold;
  color: #1e3a8a;
}

/* MOBILE */
@media(max-width:900px){
  .debutante-gallery {
    grid-template-columns: 1fr;
  }
.policies {
  padding: 60px 20px;
  background: #f8fafc;
  text-align: center;
}

.policies h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.policies p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.policy-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.policy-card:hover {
  transform: translateY(-5px);
}

.policy-card h2 {
  margin-bottom: 10px;
  color: #1d4ed8;
}

.policy-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #1d4ed8;
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
}

.policy-btn:hover {
  background: #163bb3;
}
}