/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Autour One', 'Arial', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

h1{
    font-family: 'Audiowide', 'Arial Black', sans-serif;
}

/* Main Navigation */
.main-nav {
    background-color: #0e1a37;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    height: 70px;
}

.logo {
    font-family: 'Akatab', 'Arial Black', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    color: #feffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.nav-item.active {
    font-weight: bold;
    border-bottom: 1.5px solid #f0f0f0;
}

.nav-item:hover {
    opacity: 0.8;
}

/* Main Content Wrapper */
.content-wrapper {
    display: flex;
    min-height: calc(100vh - 70px);
}

/* Training Section (Left Side) */
.training-section {
    position: relative;
    width: 61.5%;
    background: linear-gradient(135deg, #3d7d94 0%, #2d5d74 100%);
    padding: 70px;
    overflow: hidden;
}

.pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.03) 35px,
            rgba(255, 255, 255, 0.03) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(255, 255, 255, 0.03) 35px,
            rgba(255, 255, 255, 0.03) 70px
        );
    pointer-events: none;
}

.content-box {
    position: relative;
    z-index: 1;
}

.main-heading {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.training-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.training-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.training-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8f4f8;
}

.training-item ul {
    list-style: none;
    margin-top: 8px;
    padding-left: 20px;
}

.training-item ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #e8f4f8;
    position: relative;
    padding-left: 15px;
}

.training-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Learn More Button */
.learn-more-btn {
    background-color: #5fc3d4;
    color: #494545;
    border: none;
    padding: 16px 40px;
    font-size: 20px;
    font-family: 'Autour One', 'Georgia', serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

.learn-more-btn:hover {
    background-color: #4fb3c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Image Section (Right Side) */
.image-section {
    width: 38.5%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.image-container {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cpr-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }

    .training-section,
    .image-section {
        width: 100%;
    }

    .training-section {
        padding: 40px 30px;
    }

    .main-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 16px;
    }

    .site-nav {
        gap: 20px;
    }

    .logo {
        font-size: 36px;
    }

    .training-section {
        padding: 30px 20px;
    }

    .main-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .training-item h3 {
        font-size: 18px;
    }

    .training-item p,
    .training-item ul li {
        font-size: 14px;
    }

    .learn-more-btn {
        font-size: 18px;
        padding: 14px 32px;
    }

    .image-section {
        padding: 20px;
    }
}