/* cc/style.css - Premium Tech Brand */
:root {
    --primary-blue: #0066FF;
    --secondary-orange: #FF6B35;
    --dark-blue: #003D99;
    --light-blue: #E6F0FF;
    --text-dark: #1A202C;
    --text-light: #718096;
    --white: #FFFFFF;
    --gray-bg: #F7FAFC;
    /* Premium Tech Spacing */
    --section-padding: 80px;
    --container-max: 1400px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Premium Container */
.container {
    max-width: var(--container-max);
    padding-left: 24px;
    padding-right: 24px;
}

.container-fluid {
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.35rem;
    }

    p {
        font-size: 1rem;
    }
    
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Loading Spinner */
.page-loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loader-content {
    text-align: center;
    color: white;
}

.spinner-logo {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--secondary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-top: 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--secondary-orange);
    width: 0;
    animation: progress 2s ease-in-out forwards;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes progress {
    to {
        width: 100%;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.main-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    padding: 0.5rem 0;
}

.main-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.btn-nav-cta {
    background: var(--secondary-orange);
    border: none;
    color: white;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-nav-cta:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}

/* Hero Section */
.white-hero {
    background: white;
    padding: 100px 0 60px;
    min-height: auto;
}

.hero-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    animation: circuitScan 3s linear infinite;
}

.hero-title {
    margin-bottom: 15px;
    line-height: 1.3;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-subtitle.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: var(--primary-blue);
    background: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 0.85rem;
    text-decoration: underline;
    margin-top: 5px;
}

.hero-cta .btn {
    margin-bottom: 10px;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
}

.hero-visual {
    position: relative;
}

.visual-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -5%;
}

.badge-2 {
    bottom: 30%;
    left: -5%;
}

.badge-3 {
    bottom: 10%;
    right: 10%;
}

.floating-badge i {
    color: var(--primary-blue);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Stats Grid */
.stats-grid-section {
    background: var(--light-blue);
    padding: 40px 0;
}

.stat-grid-item {
    text-align: center;
    padding: 20px 10px;
}

.stat-grid-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-grid-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Trust Badges */
.trust-badges-section {
    padding: 50px 0;
    background: white;
}

.trust-label {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

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

.badge-item {
    background: var(--gray-bg);
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.badge-item:hover {
    background: var(--light-blue);
    transform: translateY(-5px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Sections - Premium Spacing */
section {
    padding: var(--section-padding) 0;
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Audience Cards */
.audience-section-v2 {
    background: var(--gray-bg);
}

.audience-grid {
    display: grid;
    gap: 30px;
}

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

.audience-card-v2 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.audience-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.audience-card-header {
    padding: 25px 20px 15px;
    text-align: center;
}

.audience-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.audience-title {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.audience-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.audience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.audience-card-content {
    padding: 20px;
}

.content-section {
    margin-bottom: 20px;
}

.content-title {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-title-icon {
    color: var(--secondary-orange);
}

.content-list {
    margin-left: 0;
}

.content-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.item-indicator {
    width: 6px;
    height: 6px;
    background: var(--secondary-orange);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.item-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.item-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gallery */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Why Choose Section */
.why-section-v2 {
    background: var(--light-blue);
}

.why-grid {
    display: grid;
    gap: 25px;
}

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

.why-card-v2 {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.why-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.why-title {
    font-size: 1.1rem;
    margin: 0;
}

.why-intro {
    margin-bottom: 15px;
}

.why-intro p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.why-detail-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.why-item-indicator {
    width: 6px;
    height: 6px;
    background: var(--secondary-orange);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.why-item-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
}

/* Programs Section */
.programs-section {
    background: white;
}

.program-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.program-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
    transform: translateY(-5px);
}

.program-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.program-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.program-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.program-details span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.program-link {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.program-link:hover {
    color: var(--secondary-orange);
}

/* Age Timeline */
.age-section {
    background: var(--gray-bg);
}

.age-timeline {
    display: grid;
    gap: 25px;
}

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

.age-item {
    background: white;
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.age-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.age-content h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.age-content h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.age-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.age-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.age-content ul li {
    font-size: 0.8rem;
    color: var(--text-dark);
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
}

.age-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
    font-weight: bold;
}

/* Services Section */
.services-section-v2 {
    background: white;
}

.services-grid {
    display: grid;
    gap: 25px;
}

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

.service-card-v2 {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 25px 20px;
    transition: all 0.3s;
}

.service-card-v2:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}

.service-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.1rem;
    margin: 0;
}

.service-intro p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-feature-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.feature-indicator {
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin: 0;
}

.btn-service-details {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.btn-service-details:hover {
    color: var(--secondary-orange);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-light {
    background: white;
    color: var(--primary-blue);
    border: none;
}

.btn-light:hover {
    background: var(--secondary-orange);
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

/* FAQ Section */
.faq-section {
    background: var(--gray-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: 18px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 15px 20px 20px;
}

.faq-answer p,
.faq-answer ul {
    font-size: 0.85rem;
    color: var(--text-light);
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand img {
    max-width: 180px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 15px 0;
}

.social-links a {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 38px;
    margin-right: 10px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--secondary-orange);
}

.footer-heading {
    color: var(--secondary-orange);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary-orange);
    margin-top: 3px;
}

.newsletter h6 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.newsletter-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.85rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    background: var(--secondary-orange);
    border: none;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--secondary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 40px;
}

.scroll-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.scroll-link i {
    margin-top: 5px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Utilities */
.text-primary {
    color: var(--primary-blue) !important;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-orange));
    border: none;
    color: white;
}

.btn-gradient-primary:hover {
    opacity: 0.9;
}

.mt-6 {
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 991px) {
    .floating-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .badge-1,
    .badge-2,
    .badge-3 {
        display: none;
    }
}

@media (max-width: 767px) {
    .white-hero {
        padding: 80px 0 30px;
    }

    section {
        padding: 60px 0;
    }
    
    :root {
        --section-padding: 60px;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 0 0 10px 0 !important;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}