.video-page-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}
.video-page-container h1 {
    color: #0056b3;
    margin-bottom: 0.5em;
}
.video-page-container .intro-text {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 2em;
}
.video-wrapper {
    max-width: 450px;
    margin: 0 auto;
}
.video-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5em;
}
.video-controls button {
    padding: 10px 20px;
    font-size: 1em;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.video-controls button:hover {
    background-color: #e0e0e0;
}
.video-player {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: left;
}
.cta-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}
.cta-section ul {
    list-style-type: '✓ ';
    padding-left: 20px;
    margin-bottom: 1.5rem;
}
.cta-section ul li {
    margin-bottom: 0.75em;
    font-size: 1.05em;
}
.tool-explanation-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #eef7ff;
    border: 1px solid #bde0fe;
    border-radius: 8px;
}
.tool-explanation-box h3 {
    color: #0056b3;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}
.tool-explanation-box ol {
    padding-left: 25px;
    text-align: left;
}
.tool-explanation-box ol li {
    margin-bottom: 0.75em;
}
.tool-explanation-box ol li strong {
    color: #0056b3;
}
.data-links-box {
    margin-top: 1.5rem;
    text-align: center;
}
.data-links-box h4 {
    color: #444;
    margin-bottom: 1rem;
    font-weight: 500;
}
.data-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.data-links-list a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.data-links-list a:hover {
    background-color: #007bff;
    color: #fff;
}