@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');

:root {
    --ziw-primary: #1d4ed8;
    --ziw-secondary: #1e3a8a;
    --ziw-accent: #84cc16;
    --ziw-background: #eff6ff;
    --ziw-text: #1e3a5f;
    --ziw-muted: #93c5fd;
    --ziw-light-gray: #f7fafc;
    --ziw-dark-gray: #374151;
    --ziw-border: #e2e8f0;
    --ziw-heading-font: 'Sora', sans-serif;
    --ziw-body-font: 'IBM Plex Sans', sans-serif;
    --sc-header-height: 80px;
}

/* Base Reset & General Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ziw-body-font);
    color: var(--ziw-text);
    background-color: var(--ziw-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: var(--ziw-accent);
    color: var(--ziw-text);
}

a {
    color: var(--ziw-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ziw-secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ziw-heading-font);
    color: var(--ziw-primary);
    line-height: 1.2;
    margin-bottom: 0.75em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ziw-secondary);
}

h3 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h4 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
}

h5 {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ziw-accent);
}

p {
    margin-bottom: 1em;
}

/* Utility Classes */
.sc-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.sc-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sc-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-flex-col {
    flex-direction: column;
}

.sc-text-center {
    text-align: center;
}

.sc-text-left {
    text-align: left;
}

.sc-text-right {
    text-align: right;
}

.sc-section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 768px) {
    .sc-section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Buttons */
.sc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.sc-btn:hover {
    transform: translateY(-2px);
}

.sc-btn-primary {
    background-color: var(--ziw-accent);
    color: var(--ziw-text);
    border-color: var(--ziw-accent);
}

.sc-btn-primary:hover {
    background-color: #6da213; 
}

.sc-btn-secondary {
    background-color: var(--ziw-primary);
    color: var(--ziw-background);
    border-color: var(--ziw-primary);
}

.sc-btn-secondary:hover {
    background-color: var(--ziw-secondary);
    border-color: var(--ziw-secondary);
}

.sc-btn-outline {
    background-color: transparent;
    color: var(--ziw-primary);
    border-color: var(--ziw-primary);
}

.sc-btn-outline:hover {
    background-color: var(--ziw-primary);
    color: var(--ziw-background);
}

.sc-btn-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Header & Mobile Navigation */
.sc-header {
    background-color: var(--ziw-secondary);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sc-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--sc-header-height);
    padding: 0 1.5rem;
}

.sc-logo {
    color: var(--ziw-accent);
    font-family: var(--ziw-heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.sc-logo-icon {
    margin-right: 0.5rem;
}

.sc-nav-menu {
    display: flex;
    gap: 2rem;
}

.sc-nav-link {
    color: var(--ziw-background);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.25rem 0;
}

.sc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--ziw-accent);
    transition: width 0.3s ease;
}

.sc-nav-link:hover::after, .sc-nav-link.active::after {
    width: 100%;
}

.sc-hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 22px;
    justify-content: center;
    position: relative;
    z-index: 1100;
}

.sc-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--ziw-background);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .sc-nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--sc-header-height);
        right: 0;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - var(--sc-header-height));
        background-color: var(--ziw-secondary);
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 999;
        overflow-y: auto;
    }

    .sc-nav-menu.active {
        transform: translateX(0%);
        display: flex;
    }

    .sc-nav-link {
        color: var(--ziw-background);
        font-size: 1.2rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sc-nav-link:last-child {
        border-bottom: none;
    }

    .sc-hamburger {
        display: flex;
    }

    .sc-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .sc-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .sc-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.sc-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ziw-background);
    overflow: hidden;
}

.sc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.sc-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.8) 0%, rgba(30, 58, 138, 0.8) 100%);
    z-index: -1;
}

.sc-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 2rem 1.5rem;
}

.sc-hero-content h1 {
    color: var(--ziw-accent);
    margin-bottom: 1rem;
}

.sc-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.sc-hero .sc-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Section Spacing & Backgrounds */
.sc-section {
    padding: 5rem 0;
}

.sc-section:nth-of-type(even) {
    background-color: var(--ziw-light-gray);
}

@media (max-width: 768px) {
    .sc-section {
        padding: 3rem 0;
    }
}

/* Card Components */
.sc-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid var(--ziw-border);
}

.sc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sc-card-icon {
    font-size: 3.5rem;
    color: var(--ziw-accent);
    margin-bottom: 1rem;
}

.sc-card h3 {
    color: var(--ziw-primary);
    margin-bottom: 0.75rem;
    font-size: 1.7rem;
}

.sc-card p {
    color: var(--ziw-dark-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.sc-card-img {
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    object-fit: cover;
    width: 100%;
    height: 200px;
}

.sc-card-content {
    flex-grow: 1;
}

/* Form Styling */
.sc-form-group {
    margin-bottom: 1.5rem;
}

.sc-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--ziw-primary);
}

.sc-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--ziw-border);
    border-radius: 0.5rem;
    font-family: var(--ziw-body-font);
    font-size: 1rem;
    color: var(--ziw-text);
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sc-form-control:focus {
    border-color: var(--ziw-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.2);
}

textarea.sc-form-control {
    min-height: 120px;
    resize: vertical;
}

.sc-form-submit {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--ziw-accent);
    color: var(--ziw-text);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.sc-form-submit:hover {
    background-color: #6da213; /* Darker accent */
    transform: translateY(-2px);
}

.sc-form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: none;
}

.sc-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.sc-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Trust/Badge Elements */
.sc-trust-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    background-color: rgba(29, 78, 216, 0.1);
    border-radius: 0.5rem;
    color: var(--ziw-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(29, 78, 216, 0.2);
}

.sc-trust-item:hover {
    background-color: rgba(29, 78, 216, 0.2);
    transform: translateY(-3px);
}

.sc-trust-item i {
    margin-right: 0.7rem;
    color: var(--ziw-secondary);
    font-size: 1.3rem;
}

/* Footer */
.sc-footer {
    background-color: var(--ziw-secondary);
    color: var(--ziw-muted);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
}

.sc-footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
}

@media (min-width: 768px) {
    .sc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sc-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sc-footer-col h4 {
    color: var(--ziw-background);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.sc-footer-col ul {
    padding-left: 0;
}

.sc-footer-col ul li {
    margin-bottom: 0.7rem;
}

.sc-footer-col ul li a {
    color: var(--ziw-muted);
    transition: color 0.3s ease;
}

.sc-footer-col ul li a:hover {
    color: var(--ziw-accent);
}

.sc-footer-bottom {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-footer-logo {
    color: var(--ziw-accent);
    font-family: var(--ziw-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.sc-footer-address, .sc-footer-contact-info {
    margin-bottom: 1rem;
}

/* FAQ Accordion */
.sc-faq-item {
    background-color: #ffffff;
    border: 1px solid var(--ziw-border);
    border-radius: 0.75rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sc-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--ziw-primary);
    cursor: pointer;
    background-color: var(--ziw-light-gray);
    border-bottom: 1px solid var(--ziw-border);
    transition: background-color 0.3s ease;
}

.sc-faq-q:hover {
    background-color: #eaf1fb;
}

.sc-faq-q i {
    transition: transform 0.3s ease;
}

.sc-faq-item.active .sc-faq-q {
    background-color: var(--ziw-primary);
    color: var(--ziw-background);
}

.sc-faq-item.active .sc-faq-q i {
    transform: rotate(180deg);
    color: var(--ziw-accent);
}

.sc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
    color: var(--ziw-text);
}

.sc-faq-item.active .sc-faq-a {
    max-height: 500px; /* Sufficiently large to reveal content */
    padding: 1.25rem 1.5rem;
}

/* Testimonial Section */
.sc-testimonial-card {
    background-color: var(--ziw-primary);
    color: var(--ziw-background);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sc-testimonial-card::before {
    content: '“';
    font-family: serif;
    font-size: 6rem;
    color: var(--ziw-accent);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    opacity: 0.2;
    z-index: 0;
}

.sc-testimonial-content {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.sc-testimonial-author {
    font-weight: 700;
    color: var(--ziw-accent);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.sc-testimonial-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Process/How It Works Section (Services Detailed) */
.sc-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    text-align: left;
}

.sc-process-step:last-child {
    margin-bottom: 0;
}

.sc-step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--ziw-accent);
    color: var(--ziw-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.25rem;
}

.sc-step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--ziw-primary);
    font-size: 1.5rem;
}

.sc-step-content p {
    font-size: 1rem;
    color: var(--ziw-dark-gray);
}

/* Why Choose Us / Trust Section */
.sc-trust-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .sc-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sc-trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sc-trust-box {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid var(--ziw-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-trust-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.sc-trust-box i {
    font-size: 3rem;
    color: var(--ziw-accent);
    margin-bottom: 1rem;
}

.sc-trust-box h3 {
    font-size: 1.5rem;
    color: var(--ziw-primary);
    margin-bottom: 0.5rem;
}

.sc-trust-box p {
    font-size: 0.95rem;
    color: var(--ziw-dark-gray);
}

/* Call to Action Section */
.sc-cta-section {
    background: linear-gradient(135deg, var(--ziw-primary) 0%, var(--ziw-secondary) 100%);
    color: var(--ziw-background);
    padding: 6rem 0;
    text-align: center;
}

.sc-cta-section h2 {
    color: var(--ziw-accent);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.sc-cta-section p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: rgba(255, 255, 255, 0.9);
}

.sc-cta-section .sc-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

/* Animations */
.sc-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sc-animate.sc-animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Specific content sections styling */
.sc-movie-card {
    text-align: left;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sc-movie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sc-movie-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sc-movie-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sc-movie-card-content h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--ziw-primary);
    flex-grow: 1;
}

.sc-movie-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--ziw-dark-gray);
    margin-bottom: 1rem;
}

.sc-movie-card-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.sc-movie-card-rating i {
    color: gold;
}

.sc-movie-card-genre {
    background-color: var(--ziw-muted);
    color: var(--ziw-secondary);
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.sc-movie-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ziw-dark-gray);
    margin-bottom: 1.5rem;
}

.sc-movie-card .sc-btn {
    margin-top: auto;
    width: fit-content;
}

.sc-featured-movie {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--ziw-border);
}

@media (min-width: 768px) {
    .sc-featured-movie {
        flex-direction: row;
        align-items: center;
    }
}

.sc-featured-movie-image {
    flex-shrink: 0;
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

@media (min-width: 768px) {
    .sc-featured-movie-image {
        width: 350px;
        height: 250px;
    }
}

.sc-featured-movie-content {
    flex-grow: 1;
}

.sc-featured-movie-content h3 {
    margin-top: 0;
    font-size: 2rem;
    color: var(--ziw-secondary);
}

.sc-platform-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--ziw-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sc-platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.sc-platform-card-icon {
    font-size: 4rem;
    color: var(--ziw-primary);
    margin-bottom: 1rem;
}

.sc-platform-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.sc-platform-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.sc-platform-card ul li {
    margin-bottom: 0.5rem;
    color: var(--ziw-dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-platform-card ul li i {
    color: var(--ziw-accent);
    margin-right: 0.5rem;
}

/* Contact Page Specific */
.sc-contact-info-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--ziw-border);
    margin-bottom: 2rem;
}

.sc-contact-info-block h4 {
    color: var(--ziw-primary);
    margin-bottom: 1rem;
}

.sc-contact-info-block p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--ziw-dark-gray);
}

.sc-contact-info-block p i {
    color: var(--ziw-accent);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.sc-business-hours ul {
    list-style: none;
    padding: 0;
}

.sc-business-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--ziw-border);
    color: var(--ziw-dark-gray);
}

.sc-business-hours li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sc-map-placeholder {
    background-color: var(--ziw-muted);
    min-height: 300px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ziw-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    overflow: hidden;
}

/* General legal page styling */
.sc-legal-content h2 {
    color: var(--ziw-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.sc-legal-content h3 {
    color: var(--ziw-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.sc-legal-content p, .sc-legal-content ul, .sc-legal-content ol {
    margin-bottom: 1rem;
    color: var(--ziw-dark-gray);
    font-size: 1rem;
}

.sc-legal-content ul, .sc-legal-content ol {
    padding-left: 1.5rem;
}

.sc-legal-content ul li, .sc-legal-content ol li {
    margin-bottom: 0.5rem;
}

.sc-legal-content strong {
    color: var(--ziw-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sc-hero-content h1 {
        font-size: 3rem;
    }
    .sc-hero-content p {
        font-size: 1.1rem;
    }
    .sc-grid {
        grid-template-columns: 1fr;
    }
    .sc-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sc-footer-col ul {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sc-hero-content h1 {
        font-size: 2.2rem;
    }
    .sc-hero-content p {
        font-size: 1rem;
    }
    .sc-section-padding {
        padding: 2rem 0;
    }
    .sc-card {
        padding: 1.5rem;
    }
    .sc-faq-q, .sc-faq-item.active .sc-faq-a {
        padding: 1rem;
    }
    .sc-featured-movie-content h3 {
        font-size: 1.5rem;
    }
    .sc-cta-section {
        padding: 4rem 0;
    }
    .sc-hamburger {
        width: 25px;
        height: 18px;
    }
}
