/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff; /* Pure white background */
    color: #1e293b; /* Dark text */
    overflow-x: hidden;
    line-height: 1.6;
}

/* Main Container */
.main-container {
    min-height: 100vh;
    background-color: #ffffff;
    color: #1e293b;
    overflow: hidden;
}

/* Fixed Background Layer Removed in PHP */
.fixed-background, .bg-gradient-1 {
    display: none !important;
}

.bg-radial {
    display: none;
}

.bg-blur-1,
.bg-blur-2,
.bg-blur-3 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(96px);
}

.bg-blur-1 {
    display: none;
}

.bg-blur-2 {
    display: none;
}

.bg-blur-3 {
    display: none;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-delay-1000 {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 1s;
}

.animate-pulse-delay-500 {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 0.5s;
}

/* Fade In Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-in-out;
}

/* Page Header */
.page-header, 
.header-container, 
.header-content, 
.breadcrumb, 
.page-title {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.page-header {
    position: relative;
    z-index: 10;
    padding: 3rem 1.5rem 2rem;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
}

.header-content {
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: #b71c1c;
    text-decoration: none !important;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff !important; /* Force override transparency for button */
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}

.breadcrumb-link:hover {
    color: #ffffff;
    background: #b71c1c !important;
    border-color: #b71c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(183, 28, 28, 0.2) !important;
}

.breadcrumb-icon {
    width: 1rem;
    height: 1rem;
}

.breadcrumb-separator {
    color: #94a3b8;
}

.breadcrumb-current {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #f1f5f9 !important; /* Soft gray/blue for the current page badge */
    color: #1a237e;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.gradient-text {
    color: #1a237e; /* Navy Blue for primary titles */
    text-shadow: none;
    background: transparent !important;
    -webkit-text-fill-color: initial;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-code-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    color: #64748b;
}

.meta-icon {
    width: 1rem;
    height: 1rem;
}

.product-rating {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #facc15;
    fill: currentColor;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem;
}

.gallery-container {
    max-width: 80rem;
    margin: 0 auto;
}

.gallery-content {
    transition: all 1s ease-in-out;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e; /* Navy blue for visibility on white */
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.section-icon {
    width: 2rem;
    height: 2rem;
    color: #b71c1c; /* Brand Red */
}

.gallery-count {
    color: #1a237e;
    font-size: 0.875rem;
    font-weight: 600;
    background-color: #f1f5f9;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    transition: all 0.5s ease;
}

.gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item-featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(183, 28, 28, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain for better fit as requested */
    transition: transform 0.5s ease;
}

.gallery-item-featured .gallery-image {
    object-fit: contain; /* Keep main image contained to avoid cropping important details */
    padding: 1rem;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(to right, #1a237e, #b71c1c);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    z-index: 10;
}

.gallery-zoom {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: rgba(183, 28, 28, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.zoom-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
}

/* Specs Section */
.specs-section {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem;
}

.specs-container {
    max-width: 80rem;
    margin: 0 auto;
}

.specs-content {
    transition: all 1s ease-in-out;
}

.specs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.specs-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
}

.specs-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #10b981;
}

.badge-icon {
    width: 1rem;
    height: 1rem;
}

/* Specs Table */
.specs-table-container {
    overflow-x: auto;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.specs-table th, 
.specs-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

.specs-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 600;
    width: 35%;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table td {
    color: #1e293b;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.spec-card {
    position: relative;
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.3));
    backdrop-filter: blur(24px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.5s ease;
    text-align: center;
}

.spec-card:hover {
    border-color: rgba(183, 28, 28, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(183, 28, 28, 0.2);
}

.spec-card:hover .spec-card-overlay {
    opacity: 1;
}

.spec-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #60a5fa;
    margin: 0 auto 1rem;
    display: block;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon {
    color: #93c5fd;
    transform: scale(1.1);
}

.spec-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem;
}

.features-container {
    max-width: 80rem;
    margin: 0 auto;
}

.features-content {
    transition: all 1s ease-in-out;
}

.features-header {
    margin-bottom: 2rem;
}

.features-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    border-color: rgba(183, 28, 28, 0.5);
    transform: translateX(0) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(183, 28, 28, 0.2);
}

.feature-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to bottom right, #b71c1c, #8e1616);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
}

.feature-text {
    font-weight: 600;
    color: #1e293b; /* Darkened for readability on white background */
    flex: 1;
}

.feature-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.25rem;
    background: linear-gradient(to bottom, #b71c1c, #1a237e);
    border-radius: 1rem 0 0 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-accent {
    opacity: 1;
}

/* Details Section */
.details-section {
    position: relative;
    z-index: 10;
    padding: 4rem 1.5rem;
}

.details-container {
    max-width: 80rem;
    margin: 0 auto;
}

.details-content {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 1s ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tabs-nav {
    display: flex;
    gap: 0.5rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    background: none;
    color: #94a3b8;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background-color: #f1f5f9;
    color: #1a237e;
}

.tab-btn.active {
    background: linear-gradient(to right, #1a237e, #b71c1c);
    color: #ffffff;
}

.tab-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    padding: 2rem;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-pane-content {
    max-width: 60rem;
    margin: 0 auto;
}

/* Description Content */
.description-content {
    color: #475569;
    line-height: 1.8;
}

.description-content h3 {
    color: #1a237e;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.description-content h3:first-child {
    margin-top: 0;
}

.description-content h4 {
    color: #e2e8f0;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.description-content p {
    margin-bottom: 1rem;
}

.description-content ul {
    list-style: none;
    padding-left: 1.5rem;
}

.description-content ul li {
    position: relative;
    margin-bottom: 0.5rem;
}

.description-content ul li::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0.6rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: #b71c1c;
    border-radius: 50%;
}

/* Video Wrapper */
.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background-color: #000000;
}

.video-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.document-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.document-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
}

.document-icon {
    width: 3rem;
    height: 3rem;
    color: #60a5fa;
    margin: 0 auto 1rem;
    display: block;
}

.document-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.document-desc {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.document-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #1a237e, #b71c1c);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.document-download:hover {
    background: linear-gradient(to right, #1a237e, #b71c1c);
    transform: scale(1.05);
}

.download-icon {
    width: 1rem;
    height: 1rem;
}

/* Contact Content */
.contact-content {
    text-align: center;
    padding: 2rem;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 1rem;
}

.contact-desc {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(to right, #1a237e, #b71c1c);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.5);
}

.contact-button:hover {
    background: linear-gradient(to right, #1a237e, #b71c1c);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.8);
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-arrow {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-button:hover .contact-arrow {
    transform: translateX(0.5rem);
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 8rem 1.5rem;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-wrapper {
    position: relative;
}

.cta-bg-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1a237e, #b71c1c);
    border-radius: 1.5rem;
    filter: blur(48px);
    opacity: 0.3;
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    transition: opacity 0.7s ease;
}

.cta-wrapper:hover .cta-bg-blur {
    opacity: 0.4;
}

.cta-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 1.5rem;
    filter: blur(24px);
}

.cta-content {
    position: relative;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-accent-line {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #1a237e;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.5s ease;
    transform: translateY(0);
}

.cta-button-primary {
    background: linear-gradient(to right, #1a237e, #b71c1c);
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.5);
}

.cta-button-primary:hover {
    background: linear-gradient(to right, #1a237e, #b71c1c);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.8);
    transform: translateY(-0.5rem) scale(1.05);
}

.cta-button-secondary {
    background-color: #f1f5f9;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.cta-button-secondary:hover {
    background-color: rgba(30, 41, 59, 1);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-0.5rem);
}

.cta-arrow,
.cta-phone {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(0.5rem);
}

.cta-button-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover .cta-button-overlay {
    opacity: 1;
}

.cta-support {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
}

.cta-support-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-support-text {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer Accent */
.footer-accent {
    position: relative;
    z-index: 10;
    height: 0.5rem;
    background: linear-gradient(to right, #1a237e, #b71c1c);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 4rem 1.5rem 2rem;
    }

    .gallery-grid,
    .specs-grid,
    .features-grid,
    .documents-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }
}