/* Industry Pages Styles */

:root {
    --sd-primary-blue: #7b1fa2;
    --sd-accent-orange: #e65c00;
    --sd-text-dark: #111827;
    --sd-text-gray: #4B5563;
    --sd-bg-light: #F9FAFB;
}

.sd-page {
    color: var(--sd-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.sd-hero-title,
.sd-banner-title,
.sd-inno-title {
    font-family: "Playfair Display", serif;
}

/* Hero Section */
.sd-hero {
    padding: 80px 0 60px;
    max-width: 1280px;
    margin: 0 auto;
}

.sd-hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
}

.sd-hero-content {
    flex: 1;
    max-width: 580px;
}

.sd-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--sd-text-dark);
}

.sd-avatars {
    display: flex;
}

.sd-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    object-fit: cover;
}

.sd-avatars img:first-child {
    margin-left: 0;
}

.sd-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--sd-text-dark);
}

.sd-hero-title .sd-highlight {
    color: var(--sd-primary-blue);
    position: relative;
    display: inline-block;
}

.sd-hero-title .sd-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--sd-primary-blue);
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
    transform: translateY(-4px);
}

.sd-hero-title .sd-highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.sd-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--sd-text-gray);
    margin-bottom: 30px;
    max-width: 480px;
}

.sd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 38px;
}

.sd-btn-primary {
    background-color: var(--sd-accent-orange);
    color: white;
    padding: 12px 32px;
    border-radius: 0.325rem;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.sd-btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
    color: white;
}

.sd-btn-demo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sd-text-dark);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sd-btn-demo:hover {
    opacity: 0.8;
    color: var(--sd-text-dark);
}

.sd-btn-demo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--sd-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sd-primary-blue);
}

.sd-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sd-stat-item {
    display: flex;
    flex-direction: column;
}

.sd-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--sd-text-dark);
}

.sd-stat-label {
    font-size: 14px;
    color: var(--sd-text-gray);
    font-weight: 500;
}

.sd-stat-divider {
    width: 1px;
    height: 40px;
    background-color: #E5E7EB;
}

.sd-hero-image {
    flex: 1;
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.sd-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 20px 20px 0px rgb(123 31 162);
    border: 1px solid #7b1fa2;
}

/* Blue Banner Section */
.sd-banner {
    max-width: 1280px;
    margin: 60px auto;
    padding: 0 24px;
}

.sd-banner-inner {
    background-color: var(--sd-primary-blue);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    overflow: hidden;
    position: relative;
}

.sd-banner-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.sd-banner-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sd-banner-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.sd-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.sd-btn-white {
    background-color: white;
    color: var(--sd-primary-blue);
    padding: 12px 28px;
    border-radius: 0.325rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.sd-btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 11px 28px;
    border-radius: 0.325rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.sd-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.sd-banner-image {
    margin-left: 50px;
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    box-shadow: 15px 15px 0px #500e6c;
}

.sd-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Weaving Innovation Section */
.sd-innovation {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 24px;
}

.sd-inno-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.sd-inno-title-wrap {
    flex: 1;
    max-width: 600px;
}

.sd-inno-tag {
    color: var(--sd-primary-blue);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sd-inno-tag::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--sd-primary-blue);
}

.sd-inno-title {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--sd-text-dark);
}

.sd-inno-desc {
    flex: 1;
    max-width: 450px;
    color: var(--sd-text-gray);
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
}

.sd-inno-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: flex-end;
}

.sd-inno-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sd-inno-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.sd-inno-img-1 {
    height: 400px;
}

.sd-inno-img-2 {
    height: 560px;
}

.sd-inno-img-3 {
    height: 350px;
}

.sd-inno-img-4 {
    height: 220px;
}

.sd-inno-subtext {
    font-size: 15px;
    color: var(--sd-text-gray);
    line-height: 1.6;
    padding-right: 20px;
}

@media (max-width: 1024px) {
    .sd-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .sd-hero-content {
        max-width: 100%;
    }

    .sd-trust-badge {
        justify-content: center;
    }

    .sd-hero-actions {
        justify-content: center;
    }

    .sd-hero-stats {
        justify-content: center;
    }

    .sd-banner-inner {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .sd-banner-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .sd-banner-actions {
        justify-content: center;
    }

    .sd-banner-image {
        position: relative;
        right: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .sd-banner-shape {
        display: none;
    }

    .sd-inno-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 20px;
    }

    .sd-inno-desc {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .sd-hero-title {
        font-size: 48px;
    }

    .sd-inno-grid {
        grid-template-columns: 1fr;
    }

    .sd-inno-img {
        height: auto !important;
        aspect-ratio: 16/9;
        margin-bottom: 0 !important;
    }
}

/* Centralize Activities Section */
.sd-centralize {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 24px;
}

.sd-cent-banner {
    background-color: #F0F4FF;
    border-radius: 24px;
    display: flex;
    align-items: center;
    padding: 60px;
    margin-bottom: 60px;
    gap: 40px;
}

.sd-cent-content {
    flex: 1;
}

.sd-cent-tag {
    color: #635BFF;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sd-cent-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--sd-text-dark);
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: "Playfair Display", serif;
}

.sd-btn-purple {
    background-color: #635BFF;
    color: white;
    padding: 12px 32px;
    border-radius: 0.325rem;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.sd-btn-purple:hover {
    background-color: #4b44d4;
    color: white;
    transform: translateY(-2px);
}

.sd-cent-image {
    flex: 1;
    position: relative;
}

.sd-cent-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sd-cent-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sd-cf-item {
    padding-top: 24px;
    border-top: 2px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.sd-cf-tag {
    color: #635BFF;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.sd-cf-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--sd-text-dark);
    margin-bottom: 12px;
    line-height: 1.35;
    font-family: "poppins", sans-serif;
}

.sd-cf-desc {
    font-size: 14.5px;
    color: var(--sd-text-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .sd-cent-banner {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .sd-cent-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .sd-cent-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sd-trust-badge{
        flex-direction: column;
    }
}

/* Animated Integrations Section */
.sd-integrations {
    padding: 20px 0px;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sd-int-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sd-text-dark);
    margin-bottom: 24px;
}

.sd-int-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--sd-text-dark);
    margin-bottom: 16px;
    font-family: "Playfair Display", serif;
}

.sd-int-subtitle {
    font-size: 18px;
    color: var(--sd-text-gray);
    margin-bottom: 40px;
}

.sd-int-btn {
    display: inline-block;
    background: var(--sd-primary-blue);
    color: #fff;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s;
    margin-bottom: 10px;
}

.sd-int-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.sd-int-network-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: calc(400px * var(--sd-scale, 1));
    overflow: hidden;
}

.sd-int-network {
    position: relative;
    width: 900px;
    height: 400px;
    flex-shrink: 0;
    margin: 0 auto;
    transform: scale(var(--sd-scale, 1));
    transform-origin: center center;
    transition: transform 0.3s ease;
}

.sd-int-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgb(244 81 30 / 47%);
}

.sd-int-center img {
    width: 60px;
    height: 60px;
}

.sd-int-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
}

.sd-int-node img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.sd-integrations.animate .sd-int-node {
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(1);
    opacity: 1;
}

.sd-int-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center center;
    z-index: 1;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 1.5s ease 0.5s;
}

.sd-integrations.animate .sd-int-lines {
    opacity: 1;
}

/* Connecting SVG lines */
.sd-int-svg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.sd-integrations.animate .sd-int-svg-lines {
    opacity: 1;
}

.sd-int-svg-lines path {
    stroke: #E5E7EB;
    stroke-width: 1.5;
    fill: none;
}

@media (max-width: 960px) {
    .sd-int-title {
        font-size: 32px;
    }

    .sd-int-network-wrapper {
        --sd-scale: calc((100vw - 32px) / 920);
    }

    .sd-int-network {
        --sd-scale: calc((100vw - 32px) / 920);
    }
}

@media (max-width: 480px) {
    .sd-int-title {
        font-size: 26px;
    }

    .sd-int-subtitle {
        font-size: 14px;
    }

    .sd-int-network-wrapper {
        --sd-scale: calc((100vw - 20px) / 920);
    }

    .sd-int-network {
        --sd-scale: calc((100vw - 20px) / 920);
    }
}

/* SaaS & Tech Challenges Section (Light Theme) */
.sd-challenges-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.sd-challenges-header {
    margin-bottom: 50px;
}

.sd-challenges-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.sd-challenges-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sd-challenges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sd-challenge-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sd-challenge-card:hover {
    transform: translateY(-4px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

.sd-challenge-icon-wrapper {
    margin-bottom: 20px;
}

.sd-challenge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3e8ff;
    border: 1px solid #e9d5ff;
    color: #7e22ce;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.sd-challenge-card-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

.sd-challenge-card-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.pm-faq-section {
    padding-bottom: 40px;
}

@media (max-width: 991px) {
    .sd-challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sd-challenges-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .sd-challenges-grid {
        grid-template-columns: 1fr;
    }

    .sd-challenges-section {
        padding: 60px 0;
    }

    .sd-challenges-title {
        font-size: 1.65rem;
    }

    .sd-challenge-card {
        padding: 24px 20px;
    }
}

/* What TitaPro Delivers Section (Light Theme) */
.sd-delivers-section {
    padding: 70px 0 0px;
    background: #ffffff;
    position: relative;
}

.sd-delivers-header {
    margin-bottom: 45px;
}

.sd-delivers-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.sd-delivers-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.sd-delivers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sd-deliver-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Color Accent Variations for Cards */
.sd-deliver-card.card-purple {
    border: 1.5px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.06);
}

.sd-deliver-card.card-purple:hover {
    border-color: #8b5cf6;
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.15);
    transform: translateY(-4px);
}

.sd-deliver-card.card-purple .sd-deliver-stat {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sd-deliver-card.card-blue {
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.06);
}

.sd-deliver-card.card-blue:hover {
    border-color: #3b82f6;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.15);
    transform: translateY(-4px);
}

.sd-deliver-card.card-blue .sd-deliver-stat {
    color: #3b82f6;
}

.sd-deliver-card.card-teal {
    border: 1.5px solid rgba(20, 184, 166, 0.3);
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.06);
}

.sd-deliver-card.card-teal:hover {
    border-color: #14b8a6;
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.15);
    transform: translateY(-4px);
}

.sd-deliver-card.card-teal .sd-deliver-stat {
    color: #0d9488;
}

.sd-deliver-card.card-orange {
    border: 1.5px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.06);
}

.sd-deliver-card.card-orange:hover {
    border-color: #f97316;
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
}

.sd-deliver-card.card-orange .sd-deliver-stat {
    color: #ea580c;
}

.sd-deliver-stat {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

.sd-deliver-label {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.bpo-trust-badges img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.04));
    transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), filter 0.25s ease;
}

.bpo-trust-badges img:hover {
    transform: translateY(-4px) scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}

.bpo-demo-card {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08), 0 0 1px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 991px) {
    .sd-delivers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sd-delivers-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .sd-delivers-grid {
        grid-template-columns: 1fr;
    }

    .sd-delivers-section {
        padding: 50px 0 60px;
    }

    .sd-delivers-title {
        font-size: 1.65rem;
    }

    .sd-deliver-stat {
        font-size: 2.3rem;
    }
    .sd-hero{
        padding: 60px 0 40px;
    }
    .sd-hero-title{
        font-size: 40px;
    }
    .sd-inno-title,
    .sd-banner-title{
        font-size: 32px;
    }
    .sd-hero-desc{
        font-size: 16px;
    }
    .sd-innovation{
        padding: 0;
        margin: 20px 0 60px;
    }
    .sd-cent-title{
        font-size: 2rem;
    }
    .sd-banner-inner{
        padding: 30px;
    }
    .sd-centralize{
        margin: 60px auto;
    }
}