/* Stronger popup highlight for coach */
.highlight-coach {
    animation: coach-pop 0.7s cubic-bezier(.22,1,.36,1);
    box-shadow: 0 0 0 6px #b6e6c9, 0 12px 36px rgba(38, 180, 90, 0.22);
    border: 3px solid #259441 !important;
    background: #eafff2 !important;
    position: relative;
    z-index: 20;
    color: #259441 !important;
    outline: 0;
}
@keyframes coach-pop {
    0% {
        transform: scale(0.92) translateY(40px);
        opacity: 0.2;
        box-shadow: 0 0 0 0 #b6e6c9, 0 0px 0px rgba(38,180,90,0.00);
    }
    60% {
        transform: scale(1.04) translateY(-8px);
        opacity: 1;
        box-shadow: 0 0 0 14px #b6e6c9, 0 18px 48px rgba(38,180,90,0.22);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        box-shadow: 0 0 0 6px #b6e6c9, 0 12px 36px rgba(38,180,90,0.22);
    }
}

/* About Section Flex Layout */
.about-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
}
.about-grid > div {
    flex: 1 1 0%;
}
.about-media {
    flex: 0 0 220px;
    max-width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.about-media img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(16,24,40,.08);
    background: #f8fafc;
    display: block;
}
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
        gap: 18px;
    }
    .about-media {
        max-width: 100%;
        justify-content: center;
    }
    .about-media img {
        width: 100%;
        height: auto;
        max-width: 260px;
        margin: 0 auto;
    }
}

/* Coach Section Layout Fix */
.coach-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 0 !important;   /* Remove extra margin */
    margin-bottom: 0;
    padding-top: 0 !important;  /* Remove extra padding */
}

.coach {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(16,24,40,.04);
    padding: 16px 12px 12px 12px;
    margin-bottom: 0;
}
.coach.reverse {
    flex-direction: row-reverse;
}
.coach .photo {
    flex: 0 0 260px;
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.coach .photo img {
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(16,24,40,.10);
    background: #f8fafc;
    display: block;
}
.coach > div:not(.photo) {
    flex: 1 1 0%;
}

@media (max-width: 900px) {
    .coach {
        flex-direction: column !important;
        align-items: stretch;
        gap: 10px;
        padding: 10px 4px;
    }
    .coach .photo {
        max-width: 100%;
        justify-content: flex-start;
    }
    .coach .photo img {
        width: 100%;
        height: auto;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
}

/* Coach Section Heading  */
.coach-section h1 {
    margin-top: 20px;
    margin-bottom: 2px;
}
.coach-section .meta {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.08rem;
}

/* Remove top margin from first coach card */
.coach-section > .coach:first-of-type {
    margin-top: 0;
}


/* Root Variables */
:root {
    --brand-dark: #6b7a3c;
    --brand-accent: #f0b429;
    --brand-olive: #a0a878;
    --text: #0f172a;
    --muted: #475569;
    --bg: #ffffff;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(16,24,40,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    min-height: 56px;
    z-index: 100;
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 0;
}
.brand-logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8fafc;
    box-shadow: 0 2px 8px rgba(16,24,40,0.06);
    margin-right: 4px;
}
.brand-text {
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: .5px;
    font-size: 1.25rem;
    white-space: nowrap;
}

/* Hamburger Icon */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    position: relative;
    cursor: pointer;
    z-index: 120;
    padding: 0;
}
.nav-toggle:before,
.nav-toggle:after,
.nav-toggle span {
    content: '';
    display: block;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #6b7a3c;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle:before { top: 11px; }
.nav-toggle span { top: 17px; }
.nav-toggle:after { top: 23px; }

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s;
}
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}
.site-nav a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: none;
    display: block;
    white-space: nowrap;
}
.site-nav a.active,
.site-nav a:hover {
    color: var(--brand-dark);
    background: rgba(107,122,60,0.08);
}

/* Responsive Hamburger Overlay Nav */
@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
    }
    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 0 0 0;
        z-index: 200;
        box-shadow: 0 8px 32px rgba(16,24,40,0.12);
    }
    .site-nav.open {
        display: flex;
    }
    .site-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .site-nav li {
        width: 100%;
    }
    .site-nav a {
        width: 100%;
        text-align: left;
        padding: 18px 28px;
        font-size: 1.1rem;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 0;
    }
    .site-header {
        padding: 6px 8px;
        min-height: 48px;
    }
}

@media (min-width: 1025px) {
    .site-header {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .site-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        height: auto !important;
        flex-wrap: wrap;
    }
    .site-nav ul {
        flex-direction: row !important;
        align-items: center;
        gap: 6px;
        width: auto;
        padding: 0;
        flex-wrap: wrap;
    }
    .site-nav li {
        width: auto;
    }
    .site-nav a {
        width: auto;
        text-align: center;
        padding: 8px 18px;
        font-size: 1rem;
        border-bottom: none;
        border-radius: 6px;
    }
    .nav-toggle {
        display: none !important;
    }
}

/* Prevent hamburger from appearing outside header */
.hero .nav-toggle,
main .nav-toggle,
section .nav-toggle {
    display: none !important;
}

/* --- END UNIVERSAL HEADER & HAMBURGER FIX --- */

/* --- Add extra space below header for page titles --- */
.coach-section,
.about-strip,
.values-band,
.features-band,
.highlights,
.section-heading {
    margin-top: 0 !important;
}
@media (max-width: 700px) {
    .coach-section,
    .about-strip,
    .values-band,
    .features-band,
    .highlights,
    .section-heading {
        margin-top: 0 !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 440px;    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    background: none;
    margin-top: 0;
    margin-bottom: 0;   
    border-radius: 0;   
}

/* Slider container */
.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;   
  overflow: hidden;
  border-radius: 0; 
}

/* Individual slides */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0; top: 0;
  opacity: 0;
  object-fit: cover;
  z-index: 1;
  transform: translateX(100%);   
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transform: translateX(0);
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* Slide out to left */
.hero-slide.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* Slide in from right */
.hero-slide.slide-in-right {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px 5px;
  cursor: pointer;
  border-radius: 30%;
  z-index: 10;
  transition: background 0.3s ease;
}
.hero-arrow.prev {
  left: 15px;
}
.hero-arrow.next {
  right: 15px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  display: inline-block;
  cursor: pointer;
}
.dots span.active {
  background: #333;
}

/* Hero text */
.hero-inner {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.hero-inner h1 {
  color: #fff;
  text-shadow: 0 2px 12px #000a;
  font-size: 2.2rem;
  text-align: center;
}

/* Highlights */
.highlights {
    padding: 56px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.card h3 {
    margin: 0 0 8px;
    color: var(--brand-dark);
}

.card p {
    margin: 0;
    color: var(--muted);
}

/* Sections */
.section-heading {
    font-size: 28px;
    margin: 0 0 12px;
    color: var(--brand-dark);
}

.lead {
    color: #334155;
    margin: 0 0 16px;
}

.about-strip {
    padding: 48px 0 16px;
}

.programs-preview {
    padding: 24px 0 56px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CTA band */
.cta-band {
    background: var(--brand-dark);
    color: #f1f5f9;
    padding: 36px 0;
    text-align: center;
    margin-top: 24px;
}
.cta-band .btn-accent {
    background: var(--brand-accent);
    color: #1f2937;
}

/* Values */
.values-band {
    background: #f8fafc;
    padding: 32px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.values-card {
    border: none;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(16,24,40,.06);
    border-radius: 12px;
    padding: 20px;
}
.pill {
    display: inline-block;
    background: var(--brand-olive);
    color: #0f172a;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 12px;
}

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sport-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: center;
    box-shadow: 0 4px 16px rgba(16,24,40,.06);
    position: relative;
    overflow: hidden;
}
.sport-card img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(16,24,40,.10);
}
.sport-card h3 {
    margin: 0 0 6px;
    color: var(--brand-dark);
}
.sport-card p {
    margin: 0;
    color: #475569;
}

/* Responsive sports */
@media (max-width: 900px) {
    .sports-grid {
        grid-template-columns: 1fr;
    }
}

/* Programs Grid */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.program-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 4px 16px rgba(16,24,40,.06);
}
.program-card h3 {
    margin: 10px 0 8px;
    color: var(--brand-dark);
}
.program-card p {
    margin: 0;
    color: #475569;
}
.program-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(107,122,60,.12);
    border: 1px solid rgba(107,122,60,.25);
}
.program-icon svg {
    width: 24px;
    height: 24px;
    fill: #6b7a3c;
}

/* Responsive programs */
@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Grid */
.features-band {
    background: #f8fafc;
    padding: 32px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 3px 12px rgba(16,24,40,.06);
}
.feature-card h3 {
    margin: 10px 0 8px;
    color: var(--brand-dark);
    font-size: 18px;
}
.feature-card p {
    margin: 0;
    color: #475569;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(107,122,60,.12);
    border: 1px solid rgba(107,122,60,.25);
}
.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #6b7a3c;
}

/* Responsive features */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.site-footer {
    margin-top: 48px;
    background: var(--brand-dark);
    color: #f1f5f9;
    padding-top: 20px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 20px;
    align-items: start;
}
.site-footer img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    margin-right: 0; 
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0px;      
    min-width: 260px;
}
.site-footer a {
    color: #e2e8f0;
    text-decoration: none;
}
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.footer-meta p {
    margin: 6px 0;
}
.copyright {
    text-align: center;
    margin: 16px 0 0;
    padding: 12px 0 20px;
    color: #e2e8f0;
    border-top: 1px solid rgba(255,255,255,.18);
}

/* Responsive Footer + Nav */
@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .nav-toggle {
        display: block;
    }
    .site-nav {
        position: fixed;
        inset: 60px 0 auto 0;
        background: #fff;
        border-bottom: 1px solid #e2e8f0;
        transform: translateY(-120%);
        transition: transform .25s ease;
    }
    .site-nav.open {
        transform: translateY(0);
    }
    .site-nav ul {
        flex-direction: column;
        padding: 12px 16px;
    }
}

/* Responsive Logo & Header */
@media (max-width: 900px) {
    .brand-logo {
        height: 60px;
        width: 60px;
    }
    .brand-text {
        font-size: 18px;
    }
    .site-header {
        min-height: 48px;
        padding: 4px 6px;
    }
}
@media (max-width: 500px) {
    .brand-logo {
        height: 44px;
        width: 44px;
    }
    .brand-text {
        font-size: 15px;
    }
    .site-header {
        min-height: 36px;
        padding: 2px 2vw;
    }
}

/* Prevent logo from being cut off */
.site-header {
    overflow: visible;
}

/* --- Responsive Container & Grid Fix --- */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background: #f6f8fa;
    font-family: 'Inter', Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.grid-3, .grid-4, .features-grid, .sports-grid, .programs-grid, .footer-inner {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.features-grid {
    grid-template-columns: repeat(4, 1fr);
}
.sports-grid, .programs-grid {
    grid-template-columns: repeat(3, 1fr);
}
.footer-inner {
    grid-template-columns: 1.2fr .8fr .8fr;
    align-items: start;
}

/* Tablet */
@media (max-width: 900px) {
    .container {
        max-width: 100vw;
        padding-left: 8px;
        padding-right: 8px;
    }
    .grid-3, .sports-grid, .programs-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .container {
        max-width: 100vw;
        padding-left: 4px;
        padding-right: 4px;
    }
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .section-heading {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .lead {
        font-size: 0.98rem;
    }
    .card, .values-card, .feature-card {
        padding: 14px;
        font-size: 1rem;
        box-sizing: border-box;
    }
}

/* Add padding for mobile screens to prevent content touching screen edges */
@media (max-width: 600px) {
    .container {
        max-width: 100vw;
        padding-left: 14px;
        padding-right: 14px;
        box-sizing: border-box;
    }
    section,
    .about-strip,
    .values-band,
    .features-band,
    .highlights,
    .cta-band {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .card,
    .values-card,
    .feature-card {
        margin-left: 2px;
        margin-right: 2px;
    }
}

/* Prevent horizontal scroll on all sections */
section, header, footer {
    max-width: 100vw;
    overflow-x: hidden;
}

/* --- HEADER/NAVBAR RESPONSIVE FIX --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(16,24,40,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    min-height: 56px;
    z-index: 100;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    position: relative;
    cursor: pointer;
    z-index: 120;
    padding: 0;
}
.nav-toggle:before,
.nav-toggle:after,
.nav-toggle span {
    content: '';
    display: block;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #6b7a3c;
    border-radius: 2px;
    transition: all 0.3s;
}
.nav-toggle:before { top: 11px; }
.nav-toggle span { top: 17px; }
.nav-toggle:after { top: 23px; }

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s;
}
.site-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}
.site-nav a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: none;
    display: block;
    white-space: nowrap;
}
.site-nav a.active,
.site-nav a:hover {
    color: var(--brand-dark);
    background: rgba(107,122,60,0.08);
}

/* --- MOBILE NAV --- */
@media (max-width: 900px) {
    .nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 14px;
        transform: translateY(-50%);
    }
    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 0 0 0;
        z-index: 200;
        box-shadow: 0 8px 32px rgba(16,24,40,0.12);
    }
    .site-nav.open {
        display: flex;
    }
    .site-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    .site-nav li {
        width: 100%;
    }
    .site-nav a {
        width: 100%;
        text-align: left;
        padding: 18px 28px;
        font-size: 1.1rem;
        border-bottom: 1px solid #f1f5f9;
        border-radius: 0;
    }
    .site-header {
        padding: 6px 8px;
        min-height: 48px;
    }
}

/* --- DESKTOP NAV ALWAYS VISIBLE --- */
@media (min-width: 901px) {
    .site-header {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    .site-nav {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        position: static !important;
        background: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        height: auto !important;
        flex-wrap: wrap;
    }
    .site-nav ul {
        flex-direction: row !important;
        align-items: center;
        gap: 6px;
        width: auto;
        padding: 0;
        flex-wrap: wrap;
    }
    .site-nav li {
        width: auto;
    }
    .site-nav a {
        width: auto;
        text-align: center;
        padding: 8px 18px;
        font-size: 1rem;
        border-bottom: none;
        border-radius: 6px;
    }
    .nav-toggle {
        display: none !important;
    }
}

/* Coach Divider */
.coach-divider {
    width: 100%;
    height: 4px;
    background: #6b7a3c;      /* Same as trial class background */
    border: none;
    border-radius: 2px;
    margin: 32px 0 32px 0;    /* Thoda zyada gap for better look */
    opacity: 1;               /* Fully solid, dark line */
}
