:root {
  --cream: #FAF8F3;
  --ivory: #F3EFE6;
  --gold: #C9963A;
  --gold-dark: #9A7025;
  --gold-light: #EDD9A3;
  --gold-pale: #FBF4E3;
  --navy: #0F1E35;
  --navy-mid: #1E3050;
  --teal: #1A6B6B;
  --teal-light: #E6F4F4;
  --text: #1E1C1A;
  --muted: #6B6560;
  --border: rgba(201,150,58,0.2);
  --border-strong: rgba(201,150,58,0.45);
  --white: #FFFFFF;
  --radius: 3px;
  --radius-lg: 8px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'DM Sans',sans-serif;background:var(--cream);color:var(--text);font-size:16px;font-weight:300;line-height:1.7;overflow-x:hidden;}
a{text-decoration:none;color:inherit;}
img{display:block;width:100%;object-fit:cover;}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar{width:4px;}
::-webkit-scrollbar-track{background:var(--ivory);}
::-webkit-scrollbar-thumb{background:var(--gold-light);}

/* ─── NAVBAR ─── */
#navbar{
  position:fixed;top:0;width:100%;z-index:1000;
  background:rgba(15,30,53,0.97);backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(201,150,58,0.25);
  transition:all 0.3s ease;
}
.nav-inner{max-width:1280px;margin:0 auto;padding:0 48px;height:76px;display:flex;align-items:center;justify-content:space-between;}
.brand{display:flex;align-items:center;gap:14px;}
.brand-emblem{
  width:46px;height:46px;border:1.5px solid var(--gold);border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.brand-emblem svg{width:24px;height:24px;}
.brand-text .name{font-family:'Cormorant Garamond',serif;font-size:20px;font-weight:500;color:var(--cream);letter-spacing:0.3px;line-height:1.2;}
.brand-text .sub{font-size:10px;font-weight:400;letter-spacing:3.5px;color:var(--gold);text-transform:uppercase;margin-top:1px;}
.nav-links{display:flex;gap:0;list-style:none;}
.nav-links a{
  padding:0 20px;height:76px;display:flex;align-items:center;
  font-size:13px;font-weight:400;letter-spacing:0.8px;text-transform:uppercase;
  color:rgba(250,248,243,0.7);transition:color 0.25s;position:relative;
}
.nav-links a::after{
  content:'';position:absolute;bottom:0;left:20px;right:20px;height:2px;
  background:var(--gold);transform:scaleX(0);transition:transform 0.3s ease;
}
.nav-links a:hover,.nav-links a.active{color:var(--cream);}
.nav-links a:hover::after,.nav-links a.active::after{transform:scaleX(1);}
.nav-cta{
  background:var(--gold);color:var(--navy)!important;
  padding:10px 24px!important;height:auto!important;
  border-radius:var(--radius);font-weight:500!important;
  letter-spacing:0.5px!important;transition:background 0.25s!important;
}
.nav-cta::after{display:none!important;}
.nav-cta:hover{background:var(--gold-dark)!important;color:var(--white)!important;}

/* ─── PAGE SECTIONS ─── */
.page{display:none;}
.page.active{display:block;}

/* ─── HERO ─── */
.hero{
  min-height:100vh;position:relative;display:flex;align-items:center;
  background:var(--navy);overflow:hidden;
}
.hero-bg{
  position:absolute;inset:0;
  background-image:url('https://lh3.googleusercontent.com/p/AF1QipNoYFVZr3hHKnQheOAtWCmb9GtYhNI0uXfEjSoY=s680-w680-h510-rw');
  background-size:cover;background-position:center;
  opacity:0.22;
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(15,30,53,0.97) 45%,rgba(15,30,53,0.5) 100%);
}
.hero-inner{max-width:1280px;margin:0 auto;padding:120px 48px 80px;position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;}
.hero-tag{display:inline-flex;align-items:center;gap:10px;margin-bottom:28px;}
.hero-tag span{font-size:11px;font-weight:400;letter-spacing:4px;text-transform:uppercase;color:var(--gold);}
.hero-tag::before{content:'';width:32px;height:1px;background:var(--gold);}
.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(44px,5vw,68px);font-weight:400;
  color:var(--cream);line-height:1.1;letter-spacing:-0.5px;margin-bottom:24px;
}
.hero h1 em{font-style:italic;color:var(--gold-light);}
.hero-desc{font-size:17px;font-weight:300;color:rgba(250,248,243,0.72);line-height:1.75;max-width:480px;margin-bottom:44px;}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;}
.btn-primary{
  background:var(--gold);color:var(--navy);padding:14px 36px;
  font-size:14px;font-weight:500;letter-spacing:0.5px;
  border-radius:var(--radius);transition:all 0.3s;
  border:1.5px solid var(--gold);
}
.btn-primary:hover{background:var(--gold-dark);border-color:var(--gold-dark);color:var(--white);}
.btn-outline{
  background:transparent;color:var(--cream);padding:14px 36px;
  font-size:14px;font-weight:400;letter-spacing:0.5px;
  border-radius:var(--radius);transition:all 0.3s;
  border:1.5px solid rgba(250,248,243,0.35);
}
.btn-outline:hover{border-color:var(--gold);color:var(--gold);}
.hero-stats{
  display:flex;gap:0;border-top:1px solid rgba(201,150,58,0.2);
  margin-top:56px;padding-top:32px;
}
.hero-stat{flex:1;padding-right:32px;}
.hero-stat+.hero-stat{border-left:1px solid rgba(201,150,58,0.2);padding-left:32px;padding-right:0;}
.hero-stat .val{font-family:'Cormorant Garamond',serif;font-size:36px;font-weight:400;color:var(--gold-light);line-height:1;}
.hero-stat .lbl{font-size:12px;font-weight:400;letter-spacing:1.5px;text-transform:uppercase;color:rgba(250,248,243,0.5);margin-top:6px;}
.hero-visual{position:relative;}
.hero-card{
  background:rgba(255,255,255,0.05);border:1px solid rgba(201,150,58,0.3);
  border-radius:var(--radius-lg);overflow:hidden;
  box-shadow:0 32px 64px rgba(0,0,0,0.4);
}
.hero-card img{height:420px;filter:brightness(0.9);}
.hero-badge{
  position:absolute;bottom:-20px;left:-20px;
  background:var(--gold);border-radius:var(--radius-lg);
  padding:20px 24px;
}
.hero-badge .num{font-family:'Cormorant Garamond',serif;font-size:32px;font-weight:500;color:var(--navy);line-height:1;}
.hero-badge .txt{font-size:11px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--navy-mid);margin-top:4px;}

/* ─── SECTION COMMONS ─── */
section{padding:96px 0;}
.section-inner{max-width:1280px;margin:0 auto;padding:0 48px;}
.section-tag{display:inline-flex;align-items:center;gap:10px;margin-bottom:16px;}
.section-tag span{font-size:11px;font-weight:400;letter-spacing:4px;text-transform:uppercase;color:var(--gold);}
.section-tag::before{content:'';width:24px;height:1px;background:var(--gold);}
.section-title{font-family:'Cormorant Garamond',serif;font-size:clamp(32px,3.5vw,48px);font-weight:400;line-height:1.15;letter-spacing:-0.3px;color:var(--navy);margin-bottom:16px;}
.section-title em{font-style:italic;color:var(--gold-dark);}
.section-sub{font-size:17px;font-weight:300;color:var(--muted);max-width:560px;line-height:1.75;}
.divider{width:56px;height:1.5px;background:var(--gold);margin:24px 0;}

/* ─── ABOUT ─── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-top:64px;}
.about-images{position:relative;}
.about-img-main{border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 24px 48px rgba(15,30,53,0.12);}
.about-img-main img{height:500px;}
.about-img-sub{
  position:absolute;bottom:-32px;right:-32px;width:55%;
  border-radius:var(--radius-lg);overflow:hidden;
  border:4px solid var(--cream);
  box-shadow:0 16px 40px rgba(15,30,53,0.15);
}
.about-img-sub img{height:220px;}
.about-content{padding-left:24px;}
.about-features{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:36px;}
.about-feat{
  background:var(--ivory);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:20px;
  transition:border-color 0.3s,transform 0.3s;
}
.about-feat:hover{border-color:var(--gold);transform:translateY(-2px);}
.about-feat .icon{font-size:22px;margin-bottom:10px;}
.about-feat h4{font-size:14px;font-weight:500;color:var(--navy);margin-bottom:4px;}
.about-feat p{font-size:13px;color:var(--muted);line-height:1.5;}

/* ─── WHY US ─── */
.why-section{background:var(--navy);padding:96px 0;}
.why-section .section-title{color:var(--cream);}
.why-section .section-sub{color:rgba(250,248,243,0.6);}
.why-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(201,150,58,0.15);margin-top:56px;border:1px solid rgba(201,150,58,0.15);}
.why-card{
  background:var(--navy-mid);padding:44px 36px;
  transition:background 0.3s;
}
.why-card:hover{background:#263a58;}
.why-num{font-family:'Cormorant Garamond',serif;font-size:52px;font-weight:300;color:rgba(201,150,58,0.25);line-height:1;margin-bottom:20px;}
.why-card h3{font-size:18px;font-weight:500;color:var(--cream);margin-bottom:12px;}
.why-card p{font-size:14px;font-weight:300;color:rgba(250,248,243,0.6);line-height:1.7;}

/* ─── COURSES PAGE ─── */
.courses-hero{
  background:var(--navy);padding:140px 0 80px;text-align:center;
  position:relative;overflow:hidden;
}
.courses-hero::before{
  content:'';position:absolute;inset:0;
  background-image:url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAGmFSjIiFFGA6T05CpaIhh7ZFwmKCr3Hpe0D6tGZzXys0-MTAwume8qYlm8yT8tRvxY62qUz09hQ0S7ExvBpVz7FXKvr000MxeLyXyBF1jv6ZkUgcMVvMRYmOc_Ucwtq4cZJdfekMZEtXHG=s680-w680-h510-rw');
  background-size:cover;background-position:center;opacity:0.12;
}
.courses-hero-inner{position:relative;z-index:1;}
.courses-hero .section-tag{justify-content:center;}
.courses-hero .section-tag::before{display:none;}
.courses-hero .section-tag::after{content:'';width:24px;height:1px;background:var(--gold);}
.courses-hero .section-title{color:var(--cream);text-align:center;}
.courses-hero .section-sub{color:rgba(250,248,243,0.65);margin:0 auto;text-align:center;}

.courses-list{padding:80px 0;}
.course-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);overflow:hidden;margin-bottom:32px;
  display:grid;grid-template-columns:280px 1fr;
  transition:box-shadow 0.3s,border-color 0.3s;
}
.course-card:hover{box-shadow:0 20px 48px rgba(15,30,53,0.1);border-color:var(--gold);}
.course-img{overflow:hidden;}
.course-img img{height:100%;min-height:260px;object-fit:cover;transition:transform 0.5s;}
.course-card:hover .course-img img{transform:scale(1.04);}
.course-body{padding:40px 48px;}
.course-badge{
  display:inline-block;background:var(--gold-pale);color:var(--gold-dark);
  font-size:11px;font-weight:500;letter-spacing:2px;text-transform:uppercase;
  padding:6px 14px;border-radius:20px;border:1px solid var(--gold-light);margin-bottom:20px;
}
.course-body h2{font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:500;color:var(--navy);margin-bottom:8px;}
.course-full-name{font-size:14px;color:var(--muted);margin-bottom:16px;font-style:italic;}
.course-body p{font-size:15px;color:var(--muted);line-height:1.75;margin-bottom:28px;}
.course-meta{display:flex;gap:32px;flex-wrap:wrap;margin-bottom:28px;}
.meta-item{display:flex;align-items:flex-start;gap:10px;}
.meta-icon{width:36px;height:36px;background:var(--gold-pale);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0;}
.meta-item .lbl{font-size:11px;font-weight:400;letter-spacing:1px;text-transform:uppercase;color:var(--muted);display:block;}
.meta-item .val{font-size:14px;font-weight:500;color:var(--navy);}
.course-eligibility{
  background:var(--ivory);border:1px solid var(--border);
  border-radius:var(--radius);padding:16px 20px;margin-bottom:24px;
}
.course-eligibility h4{font-size:12px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--gold-dark);margin-bottom:8px;}
.course-eligibility p{font-size:14px;color:var(--muted);}
.course-actions{display:flex;gap:12px;}

/* ─── GALLERY STRIP ─── */
.gallery-strip{padding:64px 0;background:var(--ivory);}
.gallery-inner{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;max-width:1280px;margin:0 auto;padding:0 48px;}
.gallery-item{border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:1;position:relative;}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s;}
.gallery-item:hover img{transform:scale(1.06);}

/* ─── REVIEWS ─── */
.reviews-section{background:var(--cream);padding:96px 0;}
.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:56px;}
.review-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:36px;
  transition:border-color 0.3s,transform 0.3s;
}
.review-card:hover{border-color:var(--gold);transform:translateY(-3px);}
.review-stars{color:var(--gold);font-size:15px;letter-spacing:2px;margin-bottom:18px;}
.review-text{font-size:15px;font-style:italic;color:var(--muted);line-height:1.8;margin-bottom:24px;font-family:'Cormorant Garamond',serif;font-size:18px;font-weight:400;}
.review-author{display:flex;align-items:center;gap:12px;}
.review-avatar{
  width:42px;height:42px;border-radius:50%;
  background:var(--navy);display:flex;align-items:center;justify-content:center;
  font-size:14px;font-weight:500;color:var(--gold-light);
}
.review-name{font-size:14px;font-weight:500;color:var(--navy);}
.review-when{font-size:12px;color:var(--muted);}

/* ─── ABOUT PAGE ─── */
.about-page-hero{
  background:var(--navy);padding:140px 0 96px;
  background-image:url('https://lh3.googleusercontent.com/p/AF1QipOO8_w0mgBnM4RoCYEN2GjQaQVQO0Lv2oB-ZzpU=s680-w680-h510-rw');
  background-size:cover;background-position:center;position:relative;
}
.about-page-hero::before{content:'';position:absolute;inset:0;background:rgba(15,30,53,0.88);}
.about-page-hero .section-inner{position:relative;z-index:1;}
.about-page-hero .section-title{color:var(--cream);}
.about-page-hero .section-sub{color:rgba(250,248,243,0.7);}

.mission-section{padding:96px 0;background:var(--white);}
.mission-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1px;background:var(--border);border:1px solid var(--border);margin-top:56px;}
.mission-card{background:var(--white);padding:44px 36px;text-align:center;}
.mission-icon{width:64px;height:64px;background:var(--gold-pale);border:1px solid var(--gold-light);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:26px;margin:0 auto 20px;}
.mission-card h3{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:500;color:var(--navy);margin-bottom:12px;}
.mission-card p{font-size:14px;color:var(--muted);line-height:1.75;}

.faculty-section{padding:96px 0;background:var(--ivory);}
.faculty-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:56px;}
.faculty-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;transition:box-shadow 0.3s;}
.faculty-card:hover{box-shadow:0 16px 40px rgba(15,30,53,0.1);}
.faculty-img-wrap{height:240px;overflow:hidden;background:var(--ivory);}
.faculty-img-wrap img{height:100%;}
.faculty-body{padding:24px;}
.faculty-body h3{font-size:17px;font-weight:500;color:var(--navy);margin-bottom:4px;}
.faculty-body .role{font-size:13px;color:var(--gold-dark);margin-bottom:12px;}
.faculty-body p{font-size:13px;color:var(--muted);line-height:1.6;}

.values-section{padding:96px 0;background:var(--navy);}
.values-section .section-title{color:var(--cream);}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:56px;}
.value-item{border-left:2px solid var(--gold);padding-left:24px;}
.value-item h4{font-size:16px;font-weight:500;color:var(--cream);margin-bottom:8px;}
.value-item p{font-size:13px;color:rgba(250,248,243,0.55);line-height:1.6;}

/* ─── CONTACT PAGE ─── */
.contact-page-hero{
  background:var(--navy);padding:140px 0 80px;
  position:relative;overflow:hidden;
}
.contact-page-hero::before{
  content:'';position:absolute;inset:0;
  background-image:url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAFYvzbvyf2vkUFQsoaLj4thnRVmDwvB4oZnju-9H-zR2gdXJxaMzCggjrUR6A9MOtrQbOQu7wg7hCY6Fp6LfWrGZDEU9INvgsW5VDeWLSuSQKS8KDnYcHdTROQ7NRT-dl_T9S7ASl5OpsH9=s680-w680-h510-rw');
  background-size:cover;background-position:center;opacity:0.14;
}
.contact-page-hero .section-inner{position:relative;z-index:1;}
.contact-page-hero .section-title{color:var(--cream);}
.contact-page-hero .section-sub{color:rgba(250,248,243,0.7);}

.contact-section{padding:96px 0;background:var(--white);}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:80px;margin-top:64px;}
.contact-info-block{display:flex;flex-direction:column;gap:32px;}
.contact-info-item{display:flex;gap:20px;align-items:flex-start;}
.info-icon{
  width:50px;height:50px;flex-shrink:0;
  background:var(--gold-pale);border:1px solid var(--gold-light);
  border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;font-size:20px;
}
.info-label{font-size:11px;font-weight:500;letter-spacing:2px;text-transform:uppercase;color:var(--gold-dark);margin-bottom:6px;}
.info-val{font-size:15px;color:var(--navy);font-weight:400;line-height:1.6;}
.info-val a{color:var(--navy);transition:color 0.25s;}
.info-val a:hover{color:var(--gold-dark);}

.contact-form{background:var(--ivory);border:1px solid var(--border);border-radius:var(--radius-lg);padding:44px;}
.contact-form h3{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:500;color:var(--navy);margin-bottom:28px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-group{margin-bottom:20px;}
.form-group label{display:block;font-size:12px;font-weight:500;letter-spacing:1px;text-transform:uppercase;color:var(--muted);margin-bottom:8px;}
.form-group input,.form-group select,.form-group textarea{
  width:100%;padding:12px 16px;
  background:var(--white);border:1px solid var(--border-strong);
  border-radius:var(--radius);font-family:'DM Sans',sans-serif;font-size:15px;color:var(--text);
  transition:border-color 0.25s,box-shadow 0.25s;outline:none;
}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{
  border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,150,58,0.1);
}
.form-group textarea{resize:vertical;min-height:120px;}
.form-submit{
  width:100%;background:var(--navy);color:var(--cream);
  padding:15px;border:none;border-radius:var(--radius);
  font-family:'DM Sans',sans-serif;font-size:14px;font-weight:500;
  letter-spacing:1px;text-transform:uppercase;cursor:pointer;
  transition:background 0.3s;
}
.form-submit:hover{background:var(--gold);color:var(--navy);}

.map-section{padding:0;}
.map-embed{width:100%;height:400px;border:none;filter:grayscale(30%);}

/* ─── FOOTER ─── */
footer{background:var(--navy);border-top:1px solid rgba(201,150,58,0.2);padding:72px 0 0;}
.footer-inner{max-width:1280px;margin:0 auto;padding:0 48px;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:56px;}
.footer-brand .name{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:500;color:var(--cream);margin-bottom:4px;}
.footer-brand .sub{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:20px;}
.footer-brand p{font-size:14px;color:rgba(250,248,243,0.5);line-height:1.7;max-width:280px;}
.footer-col h4{font-size:11px;font-weight:500;letter-spacing:3px;text-transform:uppercase;color:var(--gold);margin-bottom:20px;}
.footer-col ul{list-style:none;}
.footer-col ul li{margin-bottom:10px;}
.footer-col ul li a{font-size:14px;color:rgba(250,248,243,0.55);transition:color 0.25s;cursor:pointer;}
.footer-col ul li a:hover{color:var(--gold-light);}
.footer-contact-item{display:flex;gap:10px;margin-bottom:14px;font-size:14px;color:rgba(250,248,243,0.55);}
.footer-contact-item strong{color:rgba(250,248,243,0.8);font-weight:400;}
.footer-bottom{
  max-width:1280px;margin:0 auto;padding:24px 48px;
  border-top:1px solid rgba(201,150,58,0.12);margin-top:56px;
  display:flex;justify-content:space-between;align-items:center;
}
.footer-bottom p{font-size:13px;color:rgba(250,248,243,0.35);}
.footer-bottom a{color:var(--gold);transition:color 0.25s;}
.footer-bottom a:hover{color:var(--gold-light);}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);}}
.fade-up{animation:fadeUp 0.6s ease both;}
.delay-1{animation-delay:0.1s;}
.delay-2{animation-delay:0.2s;}
.delay-3{animation-delay:0.3s;}
.delay-4{animation-delay:0.4s;}

/* ─── MOBILE MENU BUTTON ─── */
.menu-btn{display:none;background:none;border:1px solid rgba(201,150,58,0.4);border-radius:var(--radius);padding:8px 12px;cursor:pointer;color:var(--cream);font-size:18px;}

@media(max-width:900px){
  .nav-links{display:none;}.menu-btn{display:block;}
  .hero-inner{grid-template-columns:1fr;gap:40px;}
  .hero-visual{display:none;}
  .about-grid{grid-template-columns:1fr;}
  .about-img-sub{display:none;}
  .why-grid{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr 1fr;gap:40px;}
  .mission-grid{grid-template-columns:1fr;}
  .faculty-grid{grid-template-columns:1fr 1fr;}
  .values-grid{grid-template-columns:1fr 1fr;}
  .gallery-inner{grid-template-columns:1fr 1fr;}
  .course-card{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .nav-inner{padding:0 24px;}
  .section-inner{padding:0 24px;}
  .hero-inner{padding:120px 24px 60px;}
}
.page{display:block;}

