* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.main-header.scrolled {
    background: linear-gradient(135deg, #062074 0%, #041656 100%) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
    backdrop-filter: blur(10px);
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
.contact-info img{
        width: 20px;
    margin-right: 8px;
}
.contact-item {
    display: flex;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-item i {
    margin-right: 8px;
    font-size: 16px;
}

.contact-item:hover {
    color: #FFF;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-header {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo img {
        max-width: 180px;
        height: auto;
    }
    
    .contact-info {
        justify-content: flex-start;
        margin-top: 10px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .contact-item span {
        display: inline-block;
    }
}


/* linear-gradient(135deg, rgba(10, 30, 77, 0.85) 0%, rgba(26, 58, 110, 0.85) 50%, rgba(42, 74, 126, 0.85) 100%), */
.hero-section {
    background:  url('../images/hero-sec-bg.webp');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.hero-section .hero-row{
    margin-top: 50px;
}

@media (max-width: 767px) {
    .hero-section .hero-row {
        margin-top: 80px;
    }
}

.banner-thanks{
    padding: 40px;
}
.banner-thanks.hero-section .hero-row{
    margin-top: 100px;
}

.banner-thanks h1{
    color: #fff;
}
.banner-thanks h5{
    color: #fff;
    font-weight: 400;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.container {
    position: relative;
    z-index: 1;
}

.hero-content {
    color: #ffffff;
    padding: 2rem 0;
}

.event-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FFE59A 0%, #f4a261 100%);
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    /* box-shadow: 0 4px 15px rgba(255, 229, 154, 0.4); */
    transition: all 0.3s ease;
    white-space: nowrap;
}

.event-tag:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(255, 229, 154, 0.6); */
}

.event-details {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #FFE59A;
}

.event-date,
.event-time {
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.hero-title:hover {
    transform: translateY(-5px);
    text-shadow: 0 0 30px rgba(255, 229, 154, 0.4), 
                 0 0 60px rgba(244, 162, 97, 0.1),
                 0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FFE59A 0%, #FFE59A 50%, #FFE59A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.countdown-section {
    margin-top: 2rem;
}

.countdown-label {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.countdown-timer {
    display: flex;
    gap: 1rem;
}

.time-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.registration-card {
    background: #1A1F3A;
    border-radius: 16px;
    padding: 3.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.form-input {
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.3);
    background: #ffffff;
}

.form-input::placeholder {
    color: #999;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #f4a261;
    border-color: #f4a261;
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.privacy-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.6);
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
}

.privacy-note {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .registration-card {
        margin-top: 3rem;
    }
    
    .time-box {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .event-tag {
        font-size: 0.75rem;
        letter-spacing: 1px;
        padding: 0.5rem 1.2rem;
    }
    
    .event-details {
        font-size: 0.85rem;
    }
    
    .event-date,
    .event-time {
        font-size: 0.95rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-box {
        min-width: 60px;
        padding: 0.5rem 0.75rem;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.65rem;
    }
    
    .registration-card {
        padding: 2rem 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}
.help-block.with-errors {
    color: #ffc200;
    font-size: 13px;
}

/* Learning Section Styles */
.learning-section {
    background: linear-gradient(135deg, #062074 0%, #041656 100%);
    padding: 80px 0;
    position: relative;
}

.section-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 4rem;
    text-align: left;
}

.learning-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 0 0 15px 0;
}

.learning-number {
    background: #ffffff;
    color: #0d2556;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.learning-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFE59A, #f4a261, #e76f51, #FFE59A);
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.learning-item:hover .learning-number::before {
    opacity: 1;
    animation: rotateBorder 2s linear infinite;
}

@keyframes rotateBorder {
    0% {
        background-position: 0% 50%;
        transform: rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
        transform: rotate(360deg);
    }
}

.learning-title {
    color: #FFE59A;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.learning-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.learning-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .learning-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .learning-section {
        padding: 50px 0;
    }
    
    .learning-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .learning-title {
        font-size: 1.1rem;
    }
    
    .learning-description {
        font-size: 0.95rem;
    }
}

/* Timeline Section Styles */
.timeline-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.timeline-content {
    padding-right: 2rem;
}

.timeline-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.timeline-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.timeline-image:hover {
    box-shadow: 0 0 30px rgba(231, 76, 60, 0.4), 0 0 60px rgba(231, 76, 60, 0.2);
    transform: translateY(-5px);
}

.timeline-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.timeline-image:hover img {
    transform: scale(1.05);
}

.timeline-header {
    margin-bottom: 2rem;
}

.timeline-date {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.timeline-start {
    color: #e74c3c;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.timeline-events {
    position: relative;
    padding-left: 2rem;
}

.timeline-events::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #ddd;
}

.timeline-event {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-event:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #e74c3c;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e74c3c;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-event:hover .timeline-dot {
    box-shadow: 0 0 0 2px #e74c3c, 0 0 20px rgba(231, 76, 60, 0.6), 0 0 40px rgba(231, 76, 60, 0.3);
    transform: scale(1.3);
}

.timeline-event-content {
    padding-left: 0;
}

.timeline-time {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.timeline-event-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.timeline-event-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-end {
    text-align: left;
    font-size: 0.9rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

@media (max-width: 991px) {
    .timeline-section {
        padding: 60px 0;
    }
    
    .timeline-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .timeline-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .timeline-main-title {
        font-size: 1.75rem;
    }
    
    .timeline-events {
        padding-left: 1.5rem;
    }
    
    .timeline-dot {
        left: -1.5rem;
        width: 14px;
        height: 14px;
    }
    
    .timeline-event-title {
        font-size: 1.1rem;
    }
    
    .timeline-event-description {
        font-size: 0.95rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #062074 0%, #041656 100%);
    padding: 40px 0;
    text-align: center;
}

.cta-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.btn-cta {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(244, 162, 97, 0.6);
    color: #ffffff;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 0.875rem 2.5rem;
    }
}

/* Workshop Freebie Section Styles */
.freebie-section {
    background: #ffffff;
    padding: 80px 0;
}

.freebie-content {
    padding-right: 2rem;
}

.freebie-badge {
    display: inline-block;
    background: #FFE59A;
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.freebie-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.freebie-description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.freebie-features {
    margin-bottom: 2rem;
}

.freebie-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.freebie-feature:hover {
    background: #f8f9fa;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.freebie-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #0d2556;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.freebie-feature:hover .feature-icon {
    background: #062074;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px rgba(6, 32, 116, 0.4);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.freebie-value {
    background: #f8f9fa;
    border-left: 4px solid #0d2556;
    padding: 1.5rem;
    margin-top: 2rem;
}

.freebie-value p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.freebie-value strong {
    color: #0d2556;
    font-weight: 700;
}

.freebie-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.freebie-image:hover {
    box-shadow: 0 0 40px rgba(255, 229, 154, 0.6), 0 0 80px rgba(255, 229, 154, 0.3);
    transform: translateY(-8px);
}

.freebie-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.freebie-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .freebie-section {
        padding: 60px 0;
    }
    
    .freebie-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .freebie-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .freebie-section {
        padding: 50px 0;
    }
    
    .freebie-title {
        font-size: 1.75rem;
    }
    
    .freebie-description {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
}

/* Workshop Leaders Section Styles */
.leaders-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.leaders-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.leader-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.leader-image-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #f8f9fa;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.leader-position {
    font-size: 1rem;
    color: #e76f51;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leader-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.leader-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.badge-blue {
    background: #0d2556;
    color: #ffffff;
}

.badge-yellow {
    background: #FFE59A;
    color: #1a1a1a;
}

.badge-orange {
    background: #f4a261;
    color: #ffffff;
}

.leader-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.leaders-cta-banner {
    background: linear-gradient(135deg, #062074 0%, #041656 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.leaders-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.leaders-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-leaders-cta {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
    text-transform: capitalize;
}

.btn-leaders-cta:hover {
    background: linear-gradient(135deg, #e76f51 0%, #f4a261 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(244, 162, 97, 0.6);
    color: #ffffff;
}

@media (max-width: 991px) {
    .leaders-section {
        padding: 60px 0;
    }
    
    .leaders-title {
        font-size: 2rem;
    }
    
    .leaders-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .leaders-section {
        padding: 50px 0;
    }
    
    .leaders-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .leader-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .leader-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .leader-name {
        font-size: 1.25rem;
    }
    
    .leader-badges {
        gap: 0.4rem;
    }
    
    .leader-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
    
    .leaders-cta-banner {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .leaders-cta-title {
        font-size: 1.5rem;
    }
    
    .leaders-cta-subtitle {
        font-size: 1rem;
    }
    
    .btn-leaders-cta {
        font-size: 1rem;
        padding: 0.875rem 2.5rem;
    }
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #062074 0%, #041656 100%);
    padding: 1.5rem 0;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 767px) {
    .footer-section {
        padding: 1.25rem 0;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}