body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.page-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 100%;
    margin-bottom: 30px;
}

.image {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.title-block {
    text-align: center;
    flex-shrink: 0;
    width: 300px;
}

.title-block h1 {
    margin: 0;
    font-size: 24px;
}

.title-block h2 {
    margin: 10px 0 0;
    font-size: 18px;
    font-weight: normal;
}

.paragraph-block {
    max-width: 700px;
    margin: 0 auto;
}

.paragraph-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.resources-button {
    margin-top: 20px;
    text-align: center;
}

.resources-button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.btn-resource {
    background-color: #003366;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-resource:hover {
    background-color: #0055aa;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.page-wrapper h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 40px;
}

.page-wrapper p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 20px 0;
}

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


/* 🔁 Responsive adjustments for mobile */
@media (max-width: 768px) {
    .top-row {
        flex-direction: column;
        gap: 20px;
    }

    .image {
        width: 60px;
    }

    .title-block {
        width: 100%;
    }

    .title-block h1 {
        font-size: 20px;
    }

    .title-block h2 {
        font-size: 16px;
    }
}
