/* Accreditation page styles */

/* Google Fonts import allowed by CSP */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: "Inter", sans-serif; line-height: 1.6; color: #333; background-color: #ffffff; }

.Container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.HeroSection { background: linear-gradient(135deg, #024173 0%, #1a5490 100%); color: #fff; text-align: center; padding: 1rem; position: relative; overflow: hidden; height: min-content; display: flex; align-items: center; justify-content: center; }
.HeroSection::before { content: ""; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="legal-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,0 L20,10 L10,20 L0,10 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23legal-pattern)"/></svg>'); animation: float 20s ease-in-out infinite; }

@keyframes float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-20px) rotate(2deg); } }

.HeroContent { position: relative; z-index: 2; }
.HeroTitle { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); color: #C8A451; }
.HeroSubtitle { font-size: 1.3rem; font-weight: 300; max-width: 800px; margin: 0 auto; opacity: 0.95; }

.MainContent { padding: 80px 0; }
.IntroSection { text-align: center; margin-bottom: 80px; }
.IntroText { font-size: 1.2rem; color: #024173; max-width: 900px; margin: 0 auto; line-height: 1.8; }

.SectionGrid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }

.Card { background: #fff; border-radius: 15px; padding: 40px; box-shadow: 0 10px 30px rgba(2,65,115,0.1); border: 1px solid rgba(2,65,115,0.1); transition: all .3s ease; position: relative; overflow: hidden; margin-bottom: 20px; }
.Card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #C8A451 0%, #024173 100%); }
.Card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(2,65,115,0.15); }

.CardTitle { font-size: 1.8rem; font-weight: 600; color: #024173; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.CardIcon { width: 30px; height: 30px; background: linear-gradient(135deg, #C8A451 0%, #d4b666 100%); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; }
.CardText { color: #555; line-height: 1.7; margin-bottom: 20px; }

.BulletList { list-style: none; padding: 0; }
.BulletItem { padding: 8px 0 8px 25px; position: relative; color: #555; line-height: 1.6; }
.BulletItem::before { content: '●'; color: #C8A451; font-size: 1.2rem; position: absolute; left: 0; top: 8px; }

.HighlightSection { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); border-radius: 20px; padding: 60px; margin: 60px 0; text-align: center; position: relative; overflow: hidden; }
.HighlightSection::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(200,164,81,0.05) 0%, transparent 70%); animation: Rotate 20s linear infinite; }
@keyframes Rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.Quote { font-size: 1.4rem; font-style: italic; color: #024173; line-height: 1.8; position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.Quote::before, .Quote::after { content: '"'; font-size: 2rem; color: #C8A451; font-weight: bold; }

.ProcessGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 60px 0; }
.ProcessCard { background: #fff; border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 5px 20px rgba(2,65,115,0.08); border: 2px solid transparent; transition: all .3s ease; }
.ProcessCard:hover { border-color: #C8A451; transform: translateY(-3px); }
.ProcessNumber { width: 50px; height: 50px; background: linear-gradient(135deg, #024173 0%, #1a5a8a 100%); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; }
.ProcessTitle { font-size: 1.2rem; font-weight: 600; color: #024173; margin-bottom: 15px; }
.ProcessText { color: #666; line-height: 1.6; }

.RegionsGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin: 40px 0; }
.RegionCard { background: linear-gradient(135deg, #024173 0%, #1a5a8a 100%); color: #fff; padding: 25px; border-radius: 12px; text-align: center; font-weight: 600; transition: all .3s ease; }
.RegionCard:hover { transform: scale(1.05); box-shadow: 0 10px 25px rgba(2,65,115,0.3); }

/* Responsive */
@media (max-width: 768px) {
  .HeroTitle { font-size: 2.5rem; }
  .HeroSubtitle { font-size: 1.1rem; }
  .SectionGrid { grid-template-columns: 1fr; gap: 30px; }
  .Card { padding: 30px; }
  .HighlightSection { padding: 40px 30px; }
  .Quote { font-size: 1.2rem; }
  .ProcessGrid { grid-template-columns: 1fr; gap: 20px; }
  .RegionsGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .Container { padding: 0 15px; }
  .HeroSection { padding: 60px 0; }
  .HeroTitle { font-size: 2rem; }
  .MainContent { padding: 60px 0; }
  .RegionsGrid { grid-template-columns: 1fr; }
}
