/* Features Deep Dive Section */
.features-deep-dive .feature-text-box {
    transition: transform 0.3s ease;
}

.features-deep-dive .feature-image-box img {
    transition: transform 0.5s ease;
}

.features-deep-dive .row:hover .feature-text-box {
    transform: translateX(10px);
}

@media (max-width: 991.98px) {
    .features-deep-dive .row {
        text-align: center !important;
    }

    .features-deep-dive .feature-text-box {
        margin-bottom: 2rem;
    }
}

/* Spacing & Typography */
.section-padding-bottom {
    padding-bottom: 1.5rem !important;
}

.section-padding-top {
    padding-top: 1.5rem !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: auto !important;
}

/* Content Body & Text Formatting */
.content-body {
    font-size: 1.25rem;
    white-space: pre-line;
}

.content-body p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #4a4a4a;
}

.content-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.content-body ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.content-body ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Section Layout */
.section-wrapper {
    transition: transform 0.2s ease;
}

.section-title {
    border-left: 4px solid #007bff;
    padding-left: 15px;
}

/* Custom Lists */
.custom-list .bullet-icon {
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.custom-list .item-text {
    color: #444;
    line-height: 1.6;
}

.text-shadow {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.text-shadow-sm {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-section img {
    transition: transform 0.5s ease;
}

.hero-section:hover img {
    transform: scale(1.02);
}

/* Utilities */
.preserve-newlines {
    white-space: pre-line;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}