* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #ffe6f0;
    color: #0b3c49;
}

.disclaimer-strip {
    background: #ffd700;
    padding: 0.6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    border-bottom: 2px solid #ff6b6b;
}

.disclaimer-content {
    color: #dc143c;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
    animation: scroll-disclaimer 30s linear infinite;
    padding-left: 100%;
}

@keyframes scroll-disclaimer {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.landing-title-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5vw;
    background: linear-gradient(135deg, #ffe6f0, #ffd1e3);
    position: relative;
}

.title-container {
    text-align: center;
    max-width: 1000px;
    width: 100%;
    padding: 2rem;
}

.title-line {
    margin: 1rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.title-line-1 {
    font-size: 3.5rem;
    color: #ff8c00;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.title-line-2 {
    font-size: 2rem;
    color: #006994;
    font-style: italic;
}

.title-line-3 {
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 600;
}

.title-line-4 {
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 600;
}

.title-line-5 {
    font-size: 1.4rem;
    color: #800020;
    font-weight: 500;
    margin-top: 1.5rem;
}

.online-only-banner {
    margin: 0 auto;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
    padding: 1.6rem 2.2rem;
    background: linear-gradient(135deg, #00b85c, #00a651); /* shining green */
    border-radius: 0.8rem;
    border: 2px solid #008a44;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.online-only-main {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.24rem; /* increased size */
    color: #cc0000; /* signal red-style text */
    text-align: justify;
}

.online-only-sub {
    margin: 0;
    font-size: 1.06rem;
    color: #cc0000;
    text-align: justify;
}

@media (max-width: 768px) {
    .online-only-banner {
        padding: 1.1rem 1.2rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .title-line-1 {
        font-size: 2.5rem;
    }
    
    .title-line-2 {
        font-size: 1.5rem;
    }
    
    .title-line-3,
    .title-line-4 {
        font-size: 1.3rem;
    }
    
    .title-line-5 {
        font-size: 1.1rem;
    }
    
    .disclaimer-content {
        font-size: 0.75rem;
    }
    
    .marquee-content span {
        font-size: 0.75rem;
    }
}

a {
    color: #1f8a70;
    text-decoration: none;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 5vw;
    background: linear-gradient(120deg, #ffe6f0, #ffd1e3);
    position: sticky;
    top: 0;
    z-index: 999;
}

.brand-block {
    flex-shrink: 0;
}

.brand-block .logo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: max-content;
    max-width: 100%;
    color: #0b3c49;
    text-decoration: none;
}

.brand-block .logo .logo-acronym,
.brand-block .logo .logo-subline,
.brand-block .logo .logo-tagline {
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.logo-acronym {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.5), 0 0 20px rgba(255, 102, 0, 0.3), 0 0 30px rgba(255, 102, 0, 0.2);
    line-height: 1.3;
    margin: 0;
}

.logo-subline {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ff6600;
    text-shadow: 0 0 8px rgba(255, 102, 0, 0.4);
    margin: 0.2rem 0 0 0;
    line-height: 1.3;
}

.logo-tagline {
    font-size: 0.85rem;
    color: #387a8c;
    margin: 0.2rem 0 0 0;
    line-height: 1.3;
}

.site-nav {
    display: flex;
    gap: 1.5rem;
}

.site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5vw;
    background: rgba(5, 9, 16, 0.95);
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(233, 180, 76, 0.3);
}

.site-nav a {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.nav-cta {
    border: 1px solid #1f8a70;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
}

.hero {
    min-height: 80vh;
}

.hero-slide {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 230, 240, 0.3), rgba(255, 209, 227, 0.7));
}

.hero-copy {
    position: relative;
    padding: 30vh 5vw 5vw;
    max-width: 600px;
}

.hero-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
}

.btn.primary {
    background: #1f8a70;
    color: #fff;
}

.btn.secondary {
    border: 1px solid #1f8a70;
    color: #1f8a70;
}

.pillars,
.practice-grid,
.resources,
.insight-grid,
.legislation,
.contact-grid {
    display: grid;
    gap: 1.5rem;
    padding: 4rem 5vw;
}

.pillars {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillars article {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #fff44f);
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    color: #00008b;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.pillars article::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg);
    }
}

.pillars article h3 {
    color: #00008b;
    position: relative;
    z-index: 1;
}

.pillars article p {
    color: #00008b;
    position: relative;
    z-index: 1;
}

.pillar-links {
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.pillar-links a {
    color: #00008b;
    text-decoration: none;
    font-weight: 600;
}

.pillar-links a:hover {
    color: #cc0000;
    text-decoration: underline;
}

.pillar-links strong a {
    font-weight: 700;
}

.practice-grid article,
.resources article,
.legislation article,
.insight-grid article {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(31, 138, 112, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
}

.video-feature {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 4rem 5vw;
}

.video-wrapper video {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(31, 138, 112, 0.3);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 4rem 5vw;
}

.cta-grid div {
    border-bottom: 1px solid rgba(31, 138, 112, 0.4);
    padding-bottom: 1rem;
}

.page-hero {
    padding: 5rem 5vw 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffe6f0, #ffd1e3);
}

.blog-hero .blog-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.02em;
}

.blog-hero .blog-hero-sub {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.two-column,
.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.two-column {
    padding: 4rem 5vw;
    gap: 3rem;
}

.card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(31, 138, 112, 0.3);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

.msme-strategy-box {
    background: #00b85c;
    border: 2px solid #008a44;
    padding: 2rem;
}

.msme-strategy-box h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.msme-strategy-content {
    color: #ffd700;
    font-size: 1.1rem;
    line-height: 1.6;
}

.msme-strategy-content p {
    margin: 0.5rem 0;
    color: #ffd700;
}

.msme-strategy-content .highlight-red {
    background-color: #cc0000;
    color: #fff;
    padding: 0.2rem 0.4rem;
    display: inline-block;
}

.msme-strategy-bold {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffd700 !important;
    margin-top: 1rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.msme-strategy-link {
    margin-top: 1rem;
}

.msme-strategy-link a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
}

.msme-strategy-link a:hover {
    color: #fff;
    text-decoration: underline;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li::before {
    content: '•';
    color: #1f8a70;
    margin-right: 0.5rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 5vw;
    text-align: center;
}

.stats strong {
    display: block;
    font-size: 3rem;
    color: #1f8a70;
}

.cta-banner {
    text-align: center;
    padding: 4rem 5vw;
    background: rgba(31, 138, 112, 0.08);
}

.faq .accordion details {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(31, 138, 112, 0.2);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0.6rem;
}

.carousel blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.auth-form,
.blog-posts {
    padding: 4rem 5vw;
}

.auth-form form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

input,
textarea {
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(31, 138, 112, 0.4);
    background: rgba(255, 255, 255, 0.85);
    color: #0b3c49;
}

.mobile-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.country-code-select {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(31, 138, 112, 0.4);
    background: rgba(255, 255, 255, 0.85);
    color: #0b3c49;
    font-size: 0.9rem;
    cursor: pointer;
}

.mobile-input-group input[type="tel"] {
    flex: 1;
    margin: 0;
}

.note {
    color: #387a8c;
    font-size: 0.85rem;
}

.site-footer {
    padding: 3rem 5vw 1rem;
    background: #ffd1e3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(31, 138, 112, 0.3);
    margin-top: 2rem;
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    font-size: 0.85rem;
    color: #0b3c49;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        background: none;
        border: none;
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #0b3c49;
    }

    .stats {
        flex-direction: column;
    }
}

