@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700;800&family=Source+Sans+Pro:wght@300;400;700&display=swap');

:root {
    --fse-primary: #9333ea;
    --fse-secondary: #7e22ce;
    --fse-accent: #fbbf24;
    --fse-background: #faf5ff;
    --fse-text: #581c87;
    --fse-muted: #d8b4fe;
    --fse-light-text: #f3e8ff;
    --fse-dark-text: #3c0c5b;
    --fse-white: #ffffff;
    --fse-black: #000000;

    --fse-font-heading: 'Nunito', sans-serif;
    --fse-font-body: 'Source Sans Pro', sans-serif;

    --fse-transition-speed: 0.3s;
    --fse-border-radius-soft: 8px;
    --fse-border-radius-hard: 4px;
    --fse-box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --fse-box-shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.12);
    --fse-box-shadow-hover: 0 12px 36px rgba(0, 0, 0, 0.18);
}

/* Base Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

a {
    color: var(--fse-primary);
    text-decoration: none;
    transition: color var(--fse-transition-speed) ease;
}

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

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

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

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

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 0.5em;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--fse-accent);
    border-radius: var(--fse-border-radius-hard);
}

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

h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

h5 {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 700;
}

h6 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
}

p {
    margin-bottom: 1em;
}

/* Utility Classes */
.ct-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

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

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

.ct-section-spacing {
    padding: 80px 0;
}

.ct-bg-light {
    background-color: var(--fse-background);
}

.ct-bg-muted {
    background-color: var(--fse-muted);
}

/* Buttons */
.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--fse-font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--fse-transition-speed) ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ct-btn-primary {
    background-color: var(--fse-primary);
    color: var(--fse-white);
    border-color: var(--fse-primary);
}

.ct-btn-primary:hover {
    background-color: var(--fse-secondary);
    border-color: var(--fse-secondary);
    transform: translateY(-2px);
    box-shadow: var(--fse-box-shadow-light);
}

.ct-btn-secondary {
    background-color: var(--fse-accent);
    color: var(--fse-dark-text);
    border-color: var(--fse-accent);
}

.ct-btn-secondary:hover {
    background-color: var(--fse-primary);
    color: var(--fse-white);
    border-color: var(--fse-primary);
    transform: translateY(-2px);
    box-shadow: var(--fse-box-shadow-light);
}

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

.ct-btn-outline:hover {
    background-color: var(--fse-primary);
    color: var(--fse-white);
    box-shadow: var(--fse-box-shadow-light);
    transform: translateY(-2px);
}

/* Header & Navigation */
.ct-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

.ct-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.ct-logo {
    font-family: var(--fse-font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--fse-white);
    text-decoration: none;
    letter-spacing: -0.05em;
    transition: color var(--fse-transition-speed) ease;
}

.ct-logo:hover {
    color: var(--fse-accent);
}

.ct-nav-list {
    list-style: none;
    display: flex;
}

.ct-nav-item {
    margin-left: 40px;
}

.ct-nav-link {
    color: var(--fse-white);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    transition: color var(--fse-transition-speed) ease;
}

.ct-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--fse-accent);
    transition: width var(--fse-transition-speed) ease-in-out;
}

.ct-nav-link:hover::after {
    width: 100%;
}

.ct-nav-link:hover {
    color: var(--fse-accent);
}

.ct-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.ct-hamburger span {
    height: 3px;
    width: 25px;
    background-color: var(--fse-white);
    margin-bottom: 5px;
    border-radius: 2px;
    transition: all var(--fse-transition-speed) ease;
}

/* Hero Section */
.ct-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--fse-white);
    overflow: hidden;
    padding: 120px 0;
}

.ct-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('https://picsum.photos/seed/boldmovieslenssb-movies-hero/1400/800');
    filter: brightness(0.6);
    z-index: -2;
}

.ct-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.ct-hero-content {
    max-width: 800px;
    z-index: 1;
}

.ct-hero-content h1 {
    color: var(--fse-white);
    margin-bottom: 20px;
}

.ct-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--fse-light-text);
}

/* Section Styles */
.ct-section {
    padding: 100px 0;
    position: relative;
}

.ct-section:nth-of-type(even) {
    background-color: var(--fse-muted);
}

.ct-section-heading {
    margin-bottom: 60px;
    text-align: center;
}

/* Card Components */
.ct-card {
    background-color: var(--fse-white);
    border-radius: var(--fse-border-radius-soft);
    box-shadow: var(--fse-box-shadow-light);
    padding: 30px;
    transition: transform var(--fse-transition-speed) ease, box-shadow var(--fse-transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
}

.ct-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fse-box-shadow-hover);
}

.ct-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--fse-border-radius-soft) var(--fse-border-radius-soft) 0 0;
    margin-bottom: 20px;
}

.ct-card-icon {
    font-size: 3rem;
    color: var(--fse-primary);
    margin-bottom: 20px;
}

.ct-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.ct-card p {
    font-size: 0.95rem;
    color: var(--fse-text);
}

/* Testimonials */
.ct-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ct-testimonial-card {
    background-color: var(--fse-white);
    padding: 30px;
    border-radius: var(--fse-border-radius-soft);
    box-shadow: var(--fse-box-shadow-light);
    position: relative;
    transition: transform var(--fse-transition-speed) ease, box-shadow var(--fse-transition-speed) ease;
}

.ct-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--fse-box-shadow-medium);
}

.ct-testimonial-card::before {
    content: '“';
    font-family: serif;
    font-size: 6rem;
    color: var(--fse-muted);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.7;
    z-index: 0;
    line-height: 1;
}

.ct-testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--fse-dark-text);
    position: relative;
    z-index: 1;
}

.ct-testimonial-author {
    font-weight: 700;
    color: var(--fse-primary);
    margin-top: 10px;
    font-size: 1rem;
}

.ct-testimonial-author span {
    font-weight: 400;
    color: var(--fse-text);
    font-size: 0.9rem;
}

/* Call to Action */
.ct-cta-panel {
    background-color: var(--fse-primary);
    color: var(--fse-white);
    padding: 80px 40px;
    border-radius: var(--fse-border-radius-soft);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--fse-box-shadow-medium);
    background-image: linear-gradient(135deg, var(--fse-primary) 0%, var(--fse-secondary) 100%);
}

.ct-cta-panel h2 {
    color: var(--fse-white);
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 20px;
}

.ct-cta-panel p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--fse-light-text);
}

.ct-cta-panel .ct-btn {
    background-color: var(--fse-accent);
    color: var(--fse-dark-text);
    border-color: var(--fse-accent);
}

.ct-cta-panel .ct-btn:hover {
    background-color: var(--fse-white);
    border-color: var(--fse-white);
    color: var(--fse-primary);
}

/* FAQ Accordion */
.ct-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.ct-faq-item {
    background-color: var(--fse-white);
    border-radius: var(--fse-border-radius-hard);
    box-shadow: var(--fse-box-shadow-light);
    overflow: hidden;
    transition: all var(--fse-transition-speed) ease;
}

.ct-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--fse-dark-text);
    cursor: pointer;
    background-color: var(--fse-background);
    border-bottom: 1px solid var(--fse-muted);
    transition: background-color var(--fse-transition-speed) ease;
}

.ct-faq-q:hover {
    background-color: var(--fse-muted);
}

.ct-faq-q::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--fse-primary);
    transition: transform var(--fse-transition-speed) ease;
}

.ct-faq-item.active .ct-faq-q::after {
    content: '-';
    transform: rotate(180deg);
}

.ct-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--fse-transition-speed) ease-in-out;
    background-color: var(--fse-white);
    padding: 0 25px;
}

.ct-faq-item.active .ct-faq-a {
    max-height: 500px; /* Adjust based on expected content height */
    padding: 20px 25px;
}

.ct-faq-a p {
    margin-bottom: 0;
    color: var(--fse-text);
}

/* Brand Story / About Us Section */
.ct-story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.ct-story-image {
    border-radius: var(--fse-border-radius-soft);
    box-shadow: var(--fse-box-shadow-medium);
    transition: transform var(--fse-transition-speed) ease;
}

.ct-story-image:hover {
    transform: scale(1.02);
}

.ct-story-text h3 {
    margin-bottom: 20px;
}

.ct-story-text p {
    line-height: 1.8;
    margin-bottom: 1.5em;
}

/* Trust Badges / Stats */
.ct-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 50px;
}

.ct-trust-item {
    background-color: var(--fse-white);
    padding: 30px 20px;
    border-radius: var(--fse-border-radius-soft);
    box-shadow: var(--fse-box-shadow-light);
    transition: transform var(--fse-transition-speed) ease, box-shadow var(--fse-transition-speed) ease;
}

.ct-trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--fse-box-shadow-medium);
}

.ct-trust-item i {
    font-size: 3.5rem;
    color: var(--fse-primary);
    margin-bottom: 15px;
}

.ct-trust-item h4 {
    font-size: 2rem;
    color: var(--fse-secondary);
    margin-bottom: 5px;
}

.ct-trust-item p {
    font-size: 0.95rem;
    color: var(--fse-text);
    margin-bottom: 0;
}

/* Pillars of Value */
.ct-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ct-value-card {
    background-color: var(--fse-white);
    padding: 40px;
    border-radius: var(--fse-border-radius-soft);
    box-shadow: var(--fse-box-shadow-light);
    text-align: center;
    transition: transform var(--fse-transition-speed) ease, box-shadow var(--fse-transition-speed) ease;
    border-top: 5px solid var(--fse-primary);
}

.ct-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fse-box-shadow-hover);
}

.ct-value-card i {
    font-size: 4rem;
    color: var(--fse-primary);
    margin-bottom: 20px;
}

.ct-value-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.ct-value-card p {
    color: var(--fse-text);
}

/* Lead Form Section - Unique Styling */
.ct-lead-form-section {
    background-color: var(--fse-secondary);
    padding: 100px 0;
    color: var(--fse-white);
    background-image: linear-gradient(135deg, var(--fse-secondary) 0%, var(--fse-primary) 100%);
}

.ct-lead-form-section h2 {
    color: var(--fse-white);
    text-align: center;
    margin-bottom: 20px;
}

.ct-lead-form-section p {
    color: var(--fse-light-text);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.ct-form-wrapper {
    background-color: var(--fse-white);
    padding: 50px;
    border-radius: var(--fse-border-radius-soft);
    box-shadow: var(--fse-box-shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.ct-form-group {
    margin-bottom: 25px;
    position: relative;
}

.ct-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--fse-dark-text);
    font-size: 0.95rem;
}

.ct-form-group input[type="text"],
.ct-form-group input[type="email"],
.ct-form-group input[type="tel"],
.ct-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--fse-muted);
    border-radius: var(--fse-border-radius-hard);
    font-family: var(--fse-font-body);
    font-size: 1rem;
    color: var(--fse-dark-text);
    transition: border-color var(--fse-transition-speed) ease, box-shadow var(--fse-transition-speed) ease;
}

.ct-form-group input:focus,
.ct-form-group textarea:focus {
    border-color: var(--fse-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.2);
}

.ct-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.ct-form-group .ct-form-error {
    color: #e3342f;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.ct-form-message {
    padding: 15px;
    border-radius: var(--fse-border-radius-hard);
    margin-top: 20px;
    text-align: center;
    font-weight: 700;
    display: none;
}

#spgj59i {
    background-color: #d4edda;
    color: #155724;
}

#r8aoez0 {
    background-color: #f8d7da;
    color: #721c24;
}

/* Contact Page specific styles */
.ct-contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.ct-contact-info h3 {
    margin-bottom: 25px;
    color: var(--fse-primary);
}

.ct-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--fse-dark-text);
}

.ct-contact-item i {
    font-size: 1.8rem;
    color: var(--fse-secondary);
    margin-right: 15px;
    min-width: 30px;
}

.ct-contact-item a {
    color: var(--fse-dark-text);
    transition: color var(--fse-transition-speed) ease;
}

.ct-contact-item a:hover {
    color: var(--fse-primary);
}

.ct-contact-hours h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--fse-primary);
}

.ct-contact-hours p {
    margin-bottom: 10px;
}

/* Footer */
.ct-footer {
    background-color: var(--fse-dark-text);
    color: var(--fse-muted);
    padding: 60px 0 40px;
    text-align: center;
}

.ct-footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ct-footer-logo {
    font-family: var(--fse-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--fse-white);
    text-decoration: none;
    margin-bottom: 25px;
    letter-spacing: -0.05em;
}

.ct-footer-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 25px;
}

.ct-footer-nav-item {
    margin: 0 15px 10px;
}

.ct-footer-nav-link {
    color: var(--fse-muted);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color var(--fse-transition-speed) ease;
}

.ct-footer-nav-link:hover {
    color: var(--fse-accent);
}

.ct-social-links {
    margin-bottom: 30px;
}

.ct-social-links a {
    font-size: 1.5rem;
    color: var(--fse-white);
    margin: 0 12px;
    transition: color var(--fse-transition-speed) ease, transform var(--fse-transition-speed) ease;
}

.ct-social-links a:hover {
    color: var(--fse-accent);
    transform: translateY(-3px);
}

.ct-footer-bottom-text {
    font-size: 0.85rem;
    color: var(--fse-muted);
}

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

.ct-animate.ct-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(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .ct-section-spacing {
        padding: 60px 0;
    }
    .ct-hero-content h1 {
        font-size: clamp(2.5rem, 4.5vw, 4rem);
    }
    .ct-hero-content p {
        font-size: 1.15rem;
    }
    h2 {
        font-size: clamp(1.8rem, 3.5vw, 3rem);
    }
    .ct-contact-grid {
        grid-template-columns: 1fr;
    }
    .ct-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .ct-nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--fse-dark-text);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--fse-transition-speed) ease-in-out;
        z-index: 999;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }

    .ct-nav-list.active {
        right: 0;
    }

    .ct-nav-item {
        margin: 20px 0;
    }

    .ct-nav-link {
        font-size: 1.5rem;
        color: var(--fse-white);
    }

    .ct-nav-link:hover::after {
        width: 100%;
    }

    .ct-hamburger {
        display: flex;
    }

    .ct-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .ct-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .ct-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ct-hero {
        min-height: 70vh;
        padding: 80px 0;
    }

    .ct-hero-content h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 15px;
    }

    .ct-hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ct-card {
        padding: 25px;
    }

    .ct-testimonial-card {
        padding: 25px;
    }

    .ct-cta-panel {
        padding: 60px 30px;
    }

    .ct-cta-panel h2 {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }

    .ct-cta-panel p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ct-story-content {
        gap: 30px;
    }
    .ct-story-text h3 {
        font-size: 1.8rem;
    }
    .ct-trust-item h4 {
        font-size: 1.8rem;
    }
    .ct-form-wrapper {
        padding: 30px;
    }

}

@media (max-width: 480px) {
    .ct-section-spacing {
        padding: 48px 0;
    }
    .ct-navbar {
        padding: 0 15px;
    }
    .ct-logo {
        font-size: 1.5rem;
    }
    .ct-hero {
        min-height: 60vh;
        padding: 60px 0;
    }
    .ct-hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }
    .ct-hero-content p {
        font-size: 0.9rem;
    }
    .ct-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        padding-bottom: 0.3em;
    }
    h2::after {
        width: 40px;
        height: 3px;
    }
    .ct-grid, .ct-testimonial-grid, .ct-trust-grid, .ct-value-grid {
        grid-template-columns: 1fr;
    }
    .ct-card, .ct-testimonial-card, .ct-value-card {
        padding: 20px;
    }
    .ct-faq-q {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .ct-faq-item.active .ct-faq-a {
        padding: 15px 20px;
    }
    .ct-footer-nav-list {
        flex-direction: column;
    }
    .ct-footer-nav-item {
        margin: 8px 0;
    }
    .ct-social-links a {
        font-size: 1.3rem;
        margin: 0 8px;
    }
    .ct-form-group input, .ct-form-group textarea {
        padding: 12px 15px;
    }
    .ct-form-wrapper {
        padding: 25px;
    }
}