.stat-card,
.team-card,
.timeline-content {
    border-radius: var(--border-radius)
}

.hero,
.testimonial,
.timeline,
.timeline-item {
    position: relative
}

.hero,
details {
    overflow: hidden
}

:root {
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1)
}

.toc-grid li a,
a {
    text-decoration: none
}

.faq,
.footer,
.toc {
    content-visibility: auto
}

.btn,
.copyright,
.error-hero,
.feature-card,
.hero,
.quick-link-card,
.stat-card,
.sticky-cta,
.toc {
    text-align: center
}

.btn:hover,
.card,
.feature-card,
.quick-link-card,
.screenshot,
.team-card,
.testimonial,
.value-card,
.whatsapp-btn,
header {
    box-shadow: var(--shadow)
}

.stat-card,
.timeline-content {
    background: var(--white);
    box-shadow: var(--shadow)
}

.comparison-table,
.policy-table {
    border-collapse: collapse;
    width: 100%
}

:root {
    --primary: #1a237e;
    --secondary: #ff9800;
    --accent: #4caf50;
    --dark: #121212;
    --light: #f5f5f5;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --border-radius: 8px
}

*,
.timeline-item {
    box-sizing: border-box
}

body,
header {
    background-color: var(--white)
}

.nav-menu a,
summary {
    font-weight: 500
}

.btn,
.mobile-menu-btn,
summary {
    cursor: pointer
}

.btn,
.btn:hover,
.footer-column h3,
.hero,
.hero h1,
.social-icon,
footer {
    color: var(--white)
}

.timeline {
    max-width: 800px;
    margin: 2rem auto
}

.stats-grid,
.team-grid,
.values-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    margin-left: -2px
}

.timeline-item {
    padding: 10px 40px;
    width: 50%
}

.timeline-item:nth-child(odd) {
    left: 0
}

.timeline-item:nth-child(2n) {
    left: 50%
}

.timeline-content {
    padding: 20px
}

.timeline-item:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    top: 15px
}

.timeline-item:nth-child(odd):after {
    right: -10px
}

.timeline-item:nth-child(2n):after {
    left: -10px
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

.stat-card {
    padding: 2rem 1rem
}

.team-card,
.value-card {
    background: var(--white);
    padding: 1.5rem;
    text-align: center
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: .5rem
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light)
}

.team-grid,
.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary)
}

.team-name {
    font-weight: 600;
    margin-bottom: .5rem
}

.team-role {
    color: var(--secondary);
    margin-bottom: 1rem
}

.value-card {
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary)
}

@media (max-width:992px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.7rem
    }

    .hero {
        padding: 3rem 0
    }

    .section {
        padding: 2rem 0
    }

    .timeline:before {
        left: 31px
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px
    }

    .timeline-item:nth-child(2n) {
        left: 0
    }

    .timeline-item:after {
        left: 21px
    }
}

.toc,
summary {
    min-height: 250px;
    background-color: var(--light)
}

@media (max-width:576px) {
    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.5rem
    }

    .hero p {
        font-size: 1rem
    }

    .feature-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr
    }
}

.feature-card,
.screenshot {
    border-radius: var(--border-radius);
    transition: transform .3s
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

.app-screenshots {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

.screenshot {
    width: 200px
}

.feature-card:hover,
.screenshot:hover {
    transform: translateY(-5px)
}

.toc {
    background: #f8f9ff;
    padding: 3rem 0;
    contain-intrinsic-size: 800px
}

.toc h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a237e
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px
}

.toc-grid li a {
    display: block;
    background: #fff;
    color: #1a237e;
    padding: .8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    transition: transform .25s, box-shadow .25s;
    will-change: transform
}

.toc-grid li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 35, 126, .15)
}

.toc-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.toc-column {
    flex: 1;
    min-width: 250px
}

.footer-links,
.toc-column ul {
    list-style: none;
    padding-left: 0
}

.footer-links li,
.toc-column li,
li {
    margin-bottom: .5rem
}

.feature-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem
}

.feature-card {
    background: var(--white);
    padding: 1.5rem
}

.btn,
a {
    transition: .3s
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem
}

.comparison-table th,
.policy-table th,
.step-number,
details[open] summary {
    background-color: var(--primary);
    color: var(--white)
}

.step-by-step {
    counter-reset: step-counter
}

.step {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start
}

.step-number {
    counter-increment: step-counter;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    flex-shrink: 0
}

.card,
.testimonial {
    background: var(--white)
}

.step-content {
    flex: 1
}

.comparison-table {
    margin: 2rem 0
}

.comparison-table td,
.comparison-table th {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd
}

.comparison-table tr:nth-child(2n),
.policy-table tr:nth-child(2n) {
    background-color: #f9f9f9
}

.comparison-table .check {
    color: var(--accent);
    font-weight: 700
}

.comparison-table .cross {
    color: #f44336;
    font-weight: 700
}

.footer-links a:hover,
.testimonial::before,
a:hover {
    color: var(--secondary)
}

.testimonial {
    border-radius: var(--border-radius);
    padding: 1.5rem
}

.faq-content,
summary {
    padding: 1rem
}

.testimonial::before {
    content: "❝";
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    opacity: .2
}

.testimonial-author {
    font-weight: 600;
    margin-top: 1rem;
    color: var(--primary)
}

.faq-container,
h2 {
    margin-top: 2rem
}

details {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius)
}

@media (max-width:992px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.7rem
    }

    .hero {
        padding: 3rem 0
    }

    .section {
        padding: 2rem 0
    }
}

.card,
.hero h1 {
    margin-bottom: 1.5rem
}

@media (max-width:576px) {
    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.5rem
    }

    .hero p {
        font-size: 1rem
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr
    }
}

.card {
    border-radius: var(--border-radius);
    padding: 1.5rem
}

.hero {
    padding: 5rem 0
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(.5)
}

.breadcrumb,
.section:nth-child(2n) {
    background-color: var(--light)
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem
}

.breadcrumb {
    padding: 1rem 0
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    padding-left: 0
}

.breadcrumb li {
    margin-right: .5rem;
    margin-bottom: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Poppins, sans-serif;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark)
}

.policy-list li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 1rem
}

.breadcrumb li:not(:last-child):after {
    content: ">";
    margin-left: .5rem
}

.section {
    padding: 3rem 0
}

.policy-section {
    margin-bottom: 2rem
}

.policy-section h3 {
    margin-top: 1.5rem
}

.policy-list {
    list-style-type: decimal;
    margin-left: 1.5rem
}

.policy-table {
    margin: 1.5rem 0
}

.policy-table td,
.policy-table th {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd
}

.update-info {
    background-color: #e3f2fd;
    border-left: 4px solid var(--primary);
    padding: 1rem;
    margin: 2rem 0
}

@media (max-width:992px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.7rem
    }

    .hero {
        padding: 3rem 0
    }

    .section {
        padding: 2rem 0
    }

    .error-code {
        font-size: 6rem
    }
}

.nav-menu {
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .3s
}

.nav-menu.open {
    transform: scaleY(1)
}

@media (max-width:768px) {

    .error-actions,
    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .error-actions .btn,
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px
    }

    .comparison-table {
        display: block;
        overflow-x: auto
    }

    .mobile-menu-btn,
    .policy-table,
    .sticky-cta {
        display: block
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: .3s
    }

    .nav-menu.active {
        left: 0
    }

    .nav-menu li {
        margin: 1rem 0
    }

    .policy-table {
        overflow-x: auto
    }
}

@media (max-width:576px) {
    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.5rem
    }

    .hero p {
        font-size: 1rem
    }

    .error-code {
        font-size: 4rem
    }

    .error-message {
        font-size: 1.2rem
    }

    .quick-links-grid {
        grid-template-columns: 1fr
    }
}

:root {
    --border-radius: 8px
}

* {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Poppins, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden
}

.mobile-menu-btn,
a,
h3 {
    color: var(--primary)
}

h1 {
    font-size: 2.5rem
}

h2 {
    border-bottom: 2px solid var(--secondary);
    font-size: 2rem;
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--secondary)
}

h3 {
    font-size: 1.5rem
}

ol,
ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem
}

img {
    max-width: 100%;
    height: auto
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

.btn {
    display: inline-block;
    padding: .75rem 1.5rem;
    background-color: var(--secondary);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem
}

.btn:hover {
    background-color: #e68900;
    transform: translateY(-2px)
}

.btn-primary {
    background-color: var(--primary)
}

.btn-primary:hover {
    background-color: #0d1a73
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem
}

.faq,
.footer,
.toc {
    contain-intrinsic-size: 600px
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: none
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.logo {
    height: 50px;
    width: auto
}

.nav-menu {
    display: flex;
    list-style: none
}

.nav-menu li {
    margin-left: 1.5rem
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    font-size: 1.5rem
}

.error-hero {
    background: linear-gradient(rgba(26, 35, 126, .9), rgba(26, 35, 126, .95)) 0 0/cover, url('https://indwins.in/banner_2.webp') center center/cover no-repeat;
    color: var(--white);
    padding: 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-shadow: 3px 3px 0 rgba(0, 0, 0, .2)
}

.error-message {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem
}

.error-search {
    max-width: 500px;
    margin: 2rem auto;
    display: flex
}

.error-search input {
    flex: 1;
    padding: .75rem 1rem;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem
}

.error-search button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: .3s
}

.error-search button:hover {
    background: var(--secondary)
}

.quick-links {
    margin-top: 3rem
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem
}

.quick-link-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: .3s
}

.social-icon,
.whatsapp-btn {
    border-radius: 50%;
    transition: .3s
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .15)
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary)
}

footer {
    background-color: var(--dark);
    padding: 3rem 0 1rem
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem
}

.footer-links a {
    color: #ccc
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, .1)
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px)
}

.copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .9rem;
    color: #aaa
}

.sticky-cta,
.whatsapp-btn {
    position: fixed;
    color: var(--white);
    z-index: 999
}

.sticky-cta {
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary);
    padding: 1rem;
    display: none
}

.sticky-cta .btn {
    margin: 0 .5rem
}

.whatsapp-btn {
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem
}

.whatsapp-btn:hover {
    transform: scale(1.1)
}

@media (max-width:992px) {
    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.7rem
    }

    .error-code {
        font-size: 6rem
    }
}

@media (max-width:768px) {

    .mobile-menu-btn,
    .sticky-cta {
        display: block
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        transition: .3s
    }

    .nav-menu.active {
        left: 0
    }

    .nav-menu li {
        margin: 1rem 0
    }

    .error-actions {
        flex-direction: column;
        align-items: center
    }

    .error-actions .btn {
        width: 100%;
        max-width: 300px
    }
}

@media (max-width:576px) {
    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.5rem
    }

    .error-code {
        font-size: 4rem
    }

    .error-message {
        font-size: 1.2rem
    }

    .quick-links-grid {
        grid-template-columns: 1fr
    }
}