/* Base Styles */
:root {
    --primary-color: #2979ff;
    --secondary-color: #56CCF2;
    --dark-color: #000;
    --light-color: #ffffff;
    --text-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    color: var(--text-color);
    background: linear-gradient(180deg, #E8F0FE 0%, #C4DDFF 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header/Logo */
header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding-top: 40px;
    max-width: 1024px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.logo {
    text-align: center;
}

/* Note Banner */
.note-banner {
    background-color: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    margin: 0 auto 30px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.note-badge {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 100px;
    margin-right: 10px;
    font-weight: 800;
    font-size: 14px;
}

.note-text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    font-weight: 900;
}

h2 {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000;
    padding: 0 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

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

/* CTA Button */
.cta-container {
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
    width: 100%;
}

.cta-button {
    display: inline-block;
    background-color: #2979ff;
    color: white;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 5px;
    font-size: 18px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(41, 121, 255, 0.2);
    text-transform: uppercase;
}

.cta-button i {
    margin-left: 10px;
}

.cta-button:hover {
    background-color: #1565c0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(41, 121, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    width: 100%;
    background-color: white;
}

.testimonial-heading {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: #000;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-height: 250px;
}

.testimonial-card.reverse {
    flex-direction: row-reverse;
}

.testimonial-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.client-name {
    font-size: 20px;
    font-weight: 700;
    margin-right: 8px;
}

.verified-badge {
    color: #2979ff;
    font-size: 16px;
}

.achievement-list {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.achievement-list li {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
    line-height: 1.4;
}

.achievement-list li i {
    color: #2979ff;
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.testimonial-quote {
    background-color: #E8F0FE;
    padding: 15px;
    border-radius: 8px;
    margin-top: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.testimonial-image {
    width: 40%;
    min-width: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

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

/* Challenges Section */
.challenges-section {
    width: 100%;
    background-color: #b8d8ff;
    padding: 60px 0;
}

.challenges-heading {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: #000;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.challenge-card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    position: relative;
    min-height: 180px;
}

.challenge-content {
    flex: 1;
}

.challenge-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.challenge-text {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.challenge-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
}

.challenge-icon i {
    color: #333;
}

.highlight {
    color: #2979ff;
}



.section-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About Jordan Section */
.about-section {
    width: 100%;
    background-color: white;
    padding: 60px 0;
}

.about-container {
    display: flex;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    flex: 1;
}

.about-heading {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.1;
}

.about-story p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.about-image {
    flex: 0 0 350px;
    overflow: hidden;
    border-radius: 8px;
}

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

.about-cta {
    margin-top: 30px;
    margin-bottom: 0;
}

.final-cta {
    margin: 50px auto;
    max-width: 400px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .section-wrapper {
        padding: 0 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .testimonial-heading {
        font-size: 28px;
    }
    
    .testimonial-card, .testimonial-card.reverse {
        flex-direction: column;
    }
    
    .testimonial-image {
        width: 20px;
        height: 20px;
        order: -1;
    }
    
    .challenges-heading {
        font-size: 28px;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    
    .challenge-card {
        min-height: auto;
    }
    
    .about-container {
        flex-direction: column-reverse;
    }
    
    .about-image {
        flex: 0 0 auto;
        height: 350px;
        margin-bottom: 30px;
    }
    
    .about-heading {
        font-size: 32px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
    
    .note-banner {
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .note-badge {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .testimonial-card {
        min-height: auto;
    }
}
