﻿/* Hero content heading size */
.hero__content h1 {
    font-size: 32px;
}

@media screen and (min-width: 40em) {
    .hero__content h1 {
        font-size: 42px;
    }
}

@media screen and (min-width: 54.375em) {
    .hero__content h1 {
        font-size: 51px;
    }
}

.content ul li {
    list-style-type: none !important;
}

/* Row background colors */
.row--green {
    background-color: #72BF44;
}

.row--blue {
    background-color: #0066B3 !important;
}

/* Text color for colored rows */
.row--green h2,
.row--green h3,
.row--green p,
.row--green li,
.row--blue h2,
.row--blue h3, 
.row--blue p,
.row--blue li {
    color: white;
}

/* Video testimonials section - 4 column layout */
.video-testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
}

.video-testimonial {
    width: 100%;
    margin-bottom: 30px;
}

@media screen and (min-width: 54.375em) {
    .video-testimonial {
        width: 23%;
    }
}

.video-testimonial__video {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-testimonial__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-testimonial__content {
    background: rgba(0, 0, 0, 0.05);
    padding: 15px;
    border-radius: 4px;
}

.video-testimonial__content p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
}

/* 3 column content layout */
.content__3_col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0;
}

.content__3_col__col {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.row--green .content__3_col__col {
    background: rgba(0, 0, 0, .2);
    padding: 12px;
}

@media screen and (min-width: 54.375em) {
    .content__3_col__col {
        width: 30%;
    }
}

.content__3_col__col img {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
}

.content__3_col__col h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.content__3_col__col p {
    font-size: 16px;
    line-height: 1.5;
}

/* Button styling */
.button--white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.button--white:hover,
.button--white:focus {
    background: rgba(255, 255, 255, 0.2);
}

/* Additional spacing */
.section-spacer {
    margin: 60px 0;
}

/* Content with side images */
.content-with-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px 0;
}

.content-with-image__text {
    width: 100%;
}

.content-with-image__image {
    width: 100%;
    margin: 20px 0;
}

.content-with-image__image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media screen and (min-width: 54.375em) {
    .content-with-image__text {
        width: 60%;
    }
    
    .content-with-image__image {
        width: 35%;
        margin: 0;
    }
    
    .content-with-image--image-left .content-with-image__image {
        margin-right: 5%;
        order: 1;
    }
    
    .content-with-image--image-left .content-with-image__text {
        order: 2;
    }
    
    .content-with-image--image-right .content-with-image__image {
        margin-left: 5%;
        order: 2;
    }
    
    .content-with-image--image-right .content-with-image__text {
        order: 1;
    }
}

/* Leadership program benefits list */
.benefits-list {
    margin: 30px 0;
    list-style-type: none;
}

.benefits-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #72BF44;
    font-weight: bold;
}

/* Action buttons section */
.action-buttons {
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

.action-buttons .button {
    margin: 10px;
}

.action-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.action-button-column {
    width: 100%;
    margin-bottom: 20px;
}

@media screen and (min-width: 54.375em) {
    .action-button-column {
        width: 45%;
        margin: 0 2.5%;
    }
}

/* Center text in specific sections */
#get-started .content {
    text-align: center;
}