/* --------------------------------------
 * Italy Air Cruise Deal Styles - Updated with Wedding style elements
 * -------------------------------------- */

:root {
    --iac-primary: #1e7e34; /* Green color from weddings page */
    --iac-secondary: #0077BE; /* Original blue as secondary */
    --iac-text-dark: #2c3e50;
    --iac-text-light: #f8f9fa;
    --iac-accent: #f39c12; /* Accent color for CTAs */
    --iac-light-bg: #f8f9fa;
}

/* Sticky Header Styles */
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Add padding to body when header is fixed */
body {
    padding-top: 80px;
}

/* Hero Banner Styles
---------------------------------------- */
.iac-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
    margin: 0;
    padding: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-content h1, 
.hero-content h2, 
.hero-content p, 
.hero-content span {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-text-wrapper {
    position: relative;
    height: 160px;
}

.hero-text-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease, visibility 0s linear 1s;
}

.hero-text-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease, visibility 0s linear;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    color: #fff;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: 0.2px;
}

.hero-btn-wrap {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 35px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 100;
    pointer-events: none;
    left: 0;
    right: 0;
}

.hero-control-prev,
.hero-control-next {
    pointer-events: auto;
    cursor: pointer;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.8;
}

.hero-control-prev:hover,
.hero-control-next:hover {
    background-color: var(--iac-primary);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: scale(1.1);
}

.hero-control-prev-icon,
.hero-control-next-icon {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transition: all 0.3s ease;
}

.hero-control-prev-icon {
    transform: rotate(135deg);
    margin-right: -5px;
}

.hero-control-next-icon {
    transform: rotate(-45deg);
    margin-left: -5px;
}

.hero-control-prev:hover .hero-control-prev-icon,
.hero-control-next:hover .hero-control-next-icon {
    border-width: 0 4px 4px 0;
    padding: 7px;
}

.hero-scroll-indicator {
    position: sticky;
    bottom: 30px;
    left: 45%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: white;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto 10px;
}

.scroll-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styling */
.iac-section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    color: var(--iac-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.iac-section-title, .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
    color: var(--iac-text-dark);
    line-height: 1.2;
}

.title-divider {
    width: 80px;
    height: 3px;
    background-color: var(--iac-primary);
    margin: 0 auto 35px;
}

.iac-section-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--iac-text-dark);
    line-height: 1.4;
}

/* Card Styling */
.iac-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

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

.iac-card-img {
    height: 200px;
    overflow: hidden;
}

.iac-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.iac-card:hover .iac-card-img img {
    transform: scale(1.1);
}

.iac-card-body {
    padding: 20px;
}

.iac-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.iac-card-text {
    color: #555;
    line-height: 1.6;
}

/* Feature boxes */
.feature-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--iac-primary);
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box-icon {
    font-size: 2.5rem;
    color: var(--iac-primary);
    margin-bottom: 20px;
}

.feature-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--iac-text-dark);
}

.feature-box-text {
    color: #555;
    line-height: 1.6;
}

/* Feature List Styling from Wedding Page */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    margin-bottom: 25px;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(30, 126, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.feature-icon i {
    color: var(--iac-primary);
    font-size: 20px;
}

/* Testimonial Section */
.testimonial-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 15px 0;
    position: relative;
}

.testimonial-box::before {
    content: '"';
    font-size: 80px;
    position: absolute;
    top: -15px;
    left: 20px;
    color: rgba(52, 152, 219, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #2c3e50;
}

/* Partner logos */
.partner-logo {
    padding: 20px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    max-height: 80px;
    width: auto;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/luxury-travel-ivs.jpg') center/cover no-repeat fixed;
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #ffffff;
}

.cta-subtitle {
    font-size: 1.35rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    letter-spacing: 0.3px;
    color: #ffffff;
    font-weight: 400;
}

.cta-section .hero-btn-wrap {
    margin-top: 3rem;
}

.cta-section .section-tag {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-section .title-divider {
    background-color: #ffffff;
}

.cta-btn {
    display: inline-block;
    background: var(--iac-primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px; /* Mengubah border-radius menjadi kotak */
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--iac-primary);
}

.cta-btn:hover {
    background: #fff;
    color: var(--iac-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Button Styling from Wedding Page */
.btn-hero {
    display: inline-block;
    background-color: var(--iac-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--iac-primary);
    margin: 0 10px;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: #ffffff;
    color: var(--iac-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-shadow: none;
}

.btn-hero-outline {
    display: inline-block;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 34px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    margin: 0 10px;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.btn-hero-outline:hover {
    background-color: #ffffff;
    color: var(--iac-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    color: var(--iac-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.btn-discover:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--iac-primary);
    transition: width 0.3s ease;
}

.btn-discover:hover {
    color: var(--iac-primary);
}

.btn-discover:hover:after {
    width: 100%;
}

.btn-discover i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-discover:hover i {
    transform: translateX(5px);
}

/* Video Banner Section */
.video-banner-section {
    position: relative;
    width: 100vw;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 0;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-slide.active {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.video-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.video-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.video-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.video-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-indicator.active {
    background: #fff;
    transform: scale(1.3);
}

/* Hero Controls */
.hero-controls a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-controls a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.hero-control-prev {
    left: 20px;
}

.hero-control-next {
    right: 20px;
}

/* Featured Cruise Packages */
.cruise-package {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.cruise-package-img {
    height: 250px;
    overflow: hidden;
}

.cruise-package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cruise-package:hover .cruise-package-img img {
    transform: scale(1.1);
}

.cruise-package-body {
    padding: 25px;
}

.cruise-package-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cruise-package-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.cruise-package-features {
    margin-bottom: 20px;
}

.cruise-package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.cruise-package-feature i {
    color: #3498db;
    margin-right: 10px;
    font-size: 16px;
}

.cruise-package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.cruise-package-btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 25px;
    border-radius: 4px; /* Mengubah border-radius menjadi kotak */
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cruise-package-btn:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .video-banner-section {
        height: 60vh;
    }
    
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .iac-section {
        padding: 60px 0;
    }
    
    .iac-section-title {
        font-size: 2rem;
    }
    
    .video-banner-section {
        height: 50vh;
    }
    
    .video-title {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .video-banner-section {
        height: 40vh;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
}

/* Additional Styles from Wedding Page */
/* Feature List Styling */

/* FAQ Section Styling */
#faq-section {
    background-color: #f8f9fa;
}

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

.faq-item {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.faq-question {
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.faq-question h5 {
    color: var(--iac-text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    padding-right: 30px;
}

.faq-icon {
    position: absolute;
    right: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-answer p {
    color: var(--iac-text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 20px 0;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Large enough to accommodate content */
    padding: 0 20px 20px;
}

.faq-item.active .faq-question {
    border-bottom: 1px solid #eee;
}
.feature-list {
    padding: 20px;
}

/* Travel Protection Section Typography */
.intro-statement {
    margin-bottom: 25px;
}

.lead-statement {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 12px;
}

.coverage-option {
    font-size: 0.95rem;
    color: #555;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.check-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.check-list li i {
    color: var(--iac-primary);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.25rem;
}

/* Card Badge Styling */
.iac-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--iac-primary);
    color: white;
    padding: 5px 12px;
    border-radius: 4px; /* Mengubah border-radius menjadi kotak */
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

/* Testimonial Card Updated Styling */
.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--iac-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-rating {
    color: var(--iac-accent);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author h5 {
    margin-bottom: 5px;
    color: var(--iac-text-dark);
}

/* Button Discover Style */
.btn-discover {
    color: var(--iac-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-discover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--iac-primary);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.btn-discover:hover {
    color: var(--iac-primary);
    text-decoration: none;
}

.btn-discover:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-discover i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-discover:hover i {
    transform: translateX(5px);
}

/* Image Container with Border Styling */
.img-container {
    position: relative;
    padding: 10px;
}

.img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--iac-primary);
    z-index: 0;
    transform: translate(15px, 15px);
}

.img-container img {
    position: relative;
    z-index: 1;
}

/* Special styling for insurance image container */
.insurance-img-container {
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insurance-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Logo Marquee Animation */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: fit-content;
}

.logo-marquee-reverse .logo-marquee-track {
    animation-direction: reverse;
}

.logo-marquee-item {
    flex: 0 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-marquee-track:hover {
    animation-play-state: paused;
}

/* Make sure logo containers are sized properly */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo img {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

/* --------------------------------------
 * Merged improved-spacing.css
 * -------------------------------------- */

/* Additional spacing improvements */
.text-center.mb-5 {
    margin-bottom: 4rem !important;
}

.py-5 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.section-content {
    line-height: 1.8;
}

.lead {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.row.align-items-center {
    margin-top: 2.5rem;
}

/* Improve section separations */
.bg-light {
    padding-top: 6rem;
    padding-bottom: 6rem;
}