/* style/strategy-guides-high-volatility.css */
.page-strategy-guides-high-volatility {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-strategy-guides-high-volatility__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-strategy-guides-high-volatility__hero {
    background: linear-gradient(135deg, #003366 0%, #0a4f91 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-strategy-guides-high-volatility__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-strategy-guides-high-volatility__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Contrast with dark blue */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-strategy-guides-high-volatility__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-strategy-guides-high-volatility__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.3;
    z-index: 1;
}

.page-strategy-guides-high-volatility__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.page-strategy-guides-high-volatility__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-strategy-guides-high-volatility__section--intro {
    background-color: #fcfcfc;
}

.page-strategy-guides-high-volatility__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-strategy-guides-high-volatility__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-strategy-guides-high-volatility p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.page-strategy-guides-high-volatility__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-strategy-guides-high-volatility__strategy-card {
    background-color: #f9f9f9;
    border-left: 5px solid #FFCC00;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.page-strategy-guides-high-volatility__strategy-card-title {
    font-size: 1.8em;
    color: #003366;
    margin-bottom: 15px;
}

.page-strategy-guides-high-volatility__strategy-card-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.page-strategy-guides-high-volatility__list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.page-strategy-guides-high-volatility__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.page-strategy-guides-high-volatility__image-center {
    display: block;
    margin: 30px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-strategy-guides-high-volatility__section--cta {
    text-align: center;
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
}

.page-strategy-guides-high-volatility__section--cta .page-strategy-guides-high-volatility__section-title {
    color: #FFCC00;
}

.page-strategy-guides-high-volatility__section--cta p {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-strategy-guides-high-volatility__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-strategy-guides-high-volatility__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-strategy-guides-high-volatility__btn--primary {
    background-color: #FFCC00;
    color: #003366;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-strategy-guides-high-volatility__btn--primary:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-strategy-guides-high-volatility__btn--secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-strategy-guides-high-volatility__btn--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-strategy-guides-high-volatility__hero-title {
        font-size: 2.8em;
    }
    .page-strategy-guides-high-volatility__hero-subtitle {
        font-size: 1.3em;
    }
    .page-strategy-guides-high-volatility__section-title {
        font-size: 2em;
    }
    .page-strategy-guides-high-volatility p, .page-strategy-guides-high-volatility__list li {
        font-size: 1em;
    }
    .page-strategy-guides-high-volatility__btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-strategy-guides-high-volatility__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-strategy-guides-high-volatility__btn {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-strategy-guides-high-volatility__hero {
        padding: 60px 0;
    }
    .page-strategy-guides-high-volatility__hero-title {
        font-size: 2.2em;
    }
    .page-strategy-guides-high-volatility__hero-subtitle {
        font-size: 1.1em;
    }
    .page-strategy-guides-high-volatility__section {
        padding: 40px 0;
    }
    .page-strategy-guides-high-volatility__section-title {
        font-size: 1.8em;
    }
    .page-strategy-guides-high-volatility__strategy-card {
        padding: 20px;
    }
    .page-strategy-guides-high-volatility__strategy-card-title {
        font-size: 1.5em;
    }
    .page-strategy-guides-high-volatility__image-center {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-strategy-guides-high-volatility__hero-title {
        font-size: 1.8em;
    }
    .page-strategy-guides-high-volatility__hero-subtitle {
        font-size: 1em;
    }
    .page-strategy-guides-high-volatility__section-title {
        font-size: 1.5em;
    }
    .page-strategy-guides-high-volatility__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-strategy-guides-high-volatility__container {
        padding: 0 15px;
    }
}