/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, #5d1a00 0%, #a33200 40%, var(--fssai) 100%);
    padding: 56px 5vw 64px;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.page-hero::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%)
}

.page-hero-inner {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55)
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none
}

.breadcrumb a:hover {
    color: #fff
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.3)
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px
}

.page-hero h1 em {
    color: #FFD580;
    font-style: normal
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px
}

.hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500
}

.hero-price-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 200px
}

.hero-price-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px
}

.hero-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff
}

.hero-price sup {
    font-size: 1rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block
}

.hero-price-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
    font-weight: 300
}

.hero-apply-btn {
    display: block;
    margin-top: 16px;
    background: var(--saffron);
    color: #fff;
    padding: 11px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    transition: background .2s
}

.hero-apply-btn:hover {
    background: var(--saffron-light)
}

/* STICKY CTA BAR */
.sticky-bar {
    position: sticky;
    top: 64px;
    z-index: 900;
    background: var(--white);
    border-bottom: 2px solid var(--fssai-light);
    padding: 0 5vw;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06)
}

.sticky-bar-inner {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    gap: 16px;
    overflow-x: auto
}

.sticky-nav {
    display: flex;
    gap: 0;
    list-style: none
}

.sticky-nav a {
    display: block;
    padding: 0 18px;
    height: 52px;
    line-height: 52px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all .2s
}

.sticky-nav a:hover,
.sticky-nav a.active {
    color: var(--fssai);
    border-bottom-color: var(--fssai)
}

.sticky-cta {
    background: var(--fssai);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s
}

.sticky-cta:hover {
    background: #bf360c
}

/* LAYOUT */
.content-layout {
    padding: 60px 5vw;
    background: var(--off)
}

.content-inner {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start
}

/* SECTIONS */
.sec {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px
}

.sec-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fssai);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.sec h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.25
}

.sec p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 12px
}

.sec p:last-child {
    margin-bottom: 0
}

/* TYPES TABLE */
.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px
}

.type-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all .2s;
    cursor: pointer
}

.type-card:hover {
    border-color: var(--fssai);
    box-shadow: 0 4px 16px rgba(230, 81, 0, 0.1)
}

.type-card.recommended {
    border-color: var(--fssai);
    background: var(--fssai-light)
}

.type-badge {
    font-size: 0.68rem;
    font-weight: 700;
    background: var(--fssai);
    color: #fff;
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 8px
}

.type-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px
}

.type-turnover {
    font-size: 0.8rem;
    color: var(--fssai);
    font-weight: 600;
    margin-bottom: 8px
}

.type-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300
}

.type-fee {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 10px
}

/* WHO NEEDS */
.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px
}

.who-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--off);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text)
}

.who-icon {
    font-size: 1.2rem;
    flex-shrink: 0
}

/* DOCUMENTS */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.doc-category {
    margin-bottom: 20px
}

.doc-category-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px
}

.doc-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border)
}

.doc-items {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.doc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 300;
    line-height: 1.5
}

.doc-item::before {
    content: '📄';
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px
}

/* PROCESS STEPS */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--fssai), var(--fssai-light));
    z-index: 0
}

.process-step {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding-bottom: 28px
}

.process-step:last-child {
    padding-bottom: 0
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--fssai);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--fssai)
}

.step-content {
    padding-top: 8px
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px
}

.step-content p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300
}

.step-time {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--fssai);
    font-weight: 600;
    margin-top: 6px;
    background: var(--fssai-light);
    padding: 3px 10px;
    border-radius: 100px
}

/* PENALTIES */
.penalty-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px
}

.penalty-card {
    border-radius: 12px;
    padding: 20px;
    border: 1px solid
}

.penalty-card.red {
    background: #fff5f5;
    border-color: #ffcdd2
}

.penalty-card.amber {
    background: #fffde7;
    border-color: #fff176
}

.penalty-icon {
    font-size: 1.5rem;
    margin-bottom: 8px
}

.penalty-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #c62828;
    margin-bottom: 4px
}

.penalty-card.amber .penalty-amount {
    color: #f57f17
}

.penalty-label {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 300
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.faq-q {
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none
}

.faq-q:hover {
    color: var(--fssai)
}

.faq-icon {
    font-size: 1rem;
    color: var(--fssai);
    flex-shrink: 0;
    transition: transform .3s
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    padding: 0 20px
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 20px 16px
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

/* COMPARISON TABLE */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    margin-top: 8px
}

.compare-table th {
    padding: 12px 16px;
    text-align: left;
    background: var(--navy);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem
}

.compare-table th:first-child {
    border-radius: 10px 0 0 0
}

.compare-table th:last-child {
    border-radius: 0 10px 0 0
}

.compare-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 300;
    vertical-align: top
}

.compare-table tr:last-child td {
    border-bottom: none
}

.compare-table tr:nth-child(even) td {
    background: var(--off)
}

.check {
    color: var(--green-ind);
    font-weight: 700
}

.cross {
    color: #e53935;
    font-weight: 700
}

/* SIDEBAR */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden
}

.sidebar-card-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 20px 24px
}

.sidebar-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.sidebar-card-header p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300
}

.sidebar-form {
    padding: 24px
}

.sf-group {
    margin-bottom: 14px
}

.sf-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px
}

.sf-group input,
.sf-group select,
.sf-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.87rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    outline: none;
    transition: border-color .2s
}

.sf-group input:focus,
.sf-group select:focus,
.sf-group textarea:focus {
    border-color: var(--fssai);
    box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.08)
}

.sf-group textarea {
    resize: vertical;
    min-height: 80px
}

.sf-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235a6478' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer
}

.sf-submit {
    width: 100%;
    background: var(--fssai);
    color: #fff;
    padding: 13px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s
}

.sf-submit:hover {
    background: #bf360c;
    transform: translateY(-1px)
}

.sf-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 10px
}

.sf-success {
    display: none;
    text-align: center;
    padding: 24px
}

.sf-success-icon {
    font-size: 2.8rem;
    margin-bottom: 10px
}

.sf-success h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px
}

.sf-success p {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6
}

/* PRICING SIDEBAR */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px
}

.pricing-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--fssai);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--off)
}

.pricing-item:last-child {
    border-bottom: none
}

.pricing-item-name {
    font-size: 0.85rem;
    color: var(--text);
    font-weight: 400
}

.pricing-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy)
}

/* INFO CHIPS SIDEBAR */
.info-chips {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.info-chip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    font-weight: 300
}

.info-chip-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--fssai-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0
}

/* BOTTOM CONTACT FORM SECTION */
.contact-section {
    padding: 72px 5vw;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at right center, rgba(255, 140, 0, 0.1) 0%, transparent 60%)
}

.contact-inner {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.contact-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2
}

.contact-left h2 em {
    color: var(--saffron);
    font-style: normal
}

.contact-left p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 300
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-hl {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400
}

.contact-hl-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0
}

.contact-form-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(10px)
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px
}

.contact-form-box .sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: 300
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.cf-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px
}

.cf-group label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7)
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    transition: border-color .2s
}

.cf-group input::placeholder,
.cf-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35)
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15)
}

.cf-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-color: rgba(255, 255, 255, 0.08)
}

.cf-group select option {
    background: #1a2e4a;
    color: #fff
}

.cf-group textarea {
    resize: vertical;
    min-height: 90px
}

.cf-submit {
    width: 100%;
    background: var(--saffron);
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.cf-submit:hover {
    background: var(--saffron-light);
    transform: translateY(-1px)
}

.cf-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 10px
}

.cf-success {
    display: none;
    text-align: center;
    padding: 32px 20px
}

.cf-success-icon {
    font-size: 3.5rem;
    margin-bottom: 12px
}

.cf-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px
}

.cf-success p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-weight: 300
}

.cf-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: #25D366;
    color: #fff;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem
}

/* FOOTER */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 5vw 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
}

.footer-brand .logo {
    color: #fff;
    display: inline-flex
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    font-weight: 300;
    margin-top: 14px
}

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-col ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: color .2s;
    font-weight: 300
}

.footer-col ul li a:hover {
    color: #fff
}

.footer-bottom {
    max-width: 1350px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 10px
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none
}

.footer-bottom-links a:hover {
    color: #fff
}

@media(max-width:900px) {
    .content-inner {
        grid-template-columns: 1fr
    }

    .sidebar {
        position: static
    }

    .page-hero-inner {
        grid-template-columns: 1fr
    }

    .hero-price-box {
        display: none
    }

    .contact-inner {
        grid-template-columns: 1fr
    }

    .types-grid {
        grid-template-columns: 1fr 1fr
    }

    .penalty-cards {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .who-grid {
        grid-template-columns: 1fr
    }

    .types-grid {
        grid-template-columns: 1fr
    }

    .cf-row {
        grid-template-columns: 1fr
    }
}