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

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

/* Hero Section */
.page-strategy-guides__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #3a5c80 100%); /* Dark blue gradient */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-strategy-guides__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-strategy-guides__hero > .page-strategy-guides__container {
    position: relative;
    z-index: 1;
}

.page-strategy-guides__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-strategy-guides__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-strategy-guides__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E44; /* Dark blue text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-strategy-guides__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* General Section Styling */
.page-strategy-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-strategy-guides__section:last-of-type {
    border-bottom: none;
}

.page-strategy-guides__section-title {
    font-size: 2.5em;
    color: #1A2E44; /* Dark blue title */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-strategy-guides__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-strategy-guides__description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 50px;
    color: #555;
}

/* Content Blocks with Image & Text */
.page-strategy-guides__content-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-strategy-guides__content-block--reverse {
    flex-direction: row-reverse;
}

.page-strategy-guides__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-strategy-guides__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-strategy-guides__text-content {
    flex: 2;
    min-width: 300px;
}

.page-strategy-guides__text-content h3 {
    color: #1A2E44;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-strategy-guides__text-content p {
    margin-bottom: 15px;
    color: #444;
}

/* Strategy Types Grid */
.page-strategy-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-strategy-guides__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-strategy-guides__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-strategy-guides__item-title {
    font-size: 1.6em;
    color: #1A2E44;
    margin-bottom: 15px;
}

.page-strategy-guides__grid-item p {
    color: #666;
    margin-bottom: 25px;
}

.page-strategy-guides__button {
    display: inline-block;
    background-color: #1A2E44; /* Dark blue button */
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-strategy-guides__button:hover {
    background-color: #3a5c80;
}

/* Detailed Guides List */
.page-strategy-guides__guides-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-strategy-guides__guide-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-strategy-guides__guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-strategy-guides__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-strategy-guides__card-title a {
    color: #1A2E44; /* Dark blue link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-strategy-guides__card-title a:hover {
    color: #FFD700; /* Gold on hover */
}

.page-strategy-guides__card-description {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-strategy-guides__card-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E44; /* Dark blue text */
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.page-strategy-guides__card-button:hover {
    background-color: #e6c200;
}

/* Benefits List */
.page-strategy-guides__benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-strategy-guides__benefits-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
    display: flex;
    align-items: center;
}

.page-strategy-guides__benefits-list li strong {
    color: #1A2E44;
    margin-right: 10px;
}

.page-strategy-guides__benefits-list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
}

/* Final CTA Section */
.page-strategy-guides__cta-final {
    background-color: #1A2E44; /* Dark blue background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-strategy-guides__cta-container {
    max-width: 900px;
}

.page-strategy-guides__cta-title {
    color: #FFD700; /* Gold title */
    font-size: 2.8em;
    margin-bottom: 20px;
}

.page-strategy-guides__cta-title::after {
    background-color: #FFD700;
}

.page-strategy-guides__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-strategy-guides__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
}

.page-strategy-guides__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
    transform: translateY(-3px);
}

.page-strategy-guides__cta-button--tertiary {
    background-color: #FFD700;
    color: #1A2E44;
}

.page-strategy-guides__cta-button--tertiary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-strategy-guides__title {
        font-size: 2.8em;
    }
    .page-strategy-guides__subtitle {
        font-size: 1.3em;
    }
    .page-strategy-guides__section-title {
        font-size: 2em;
    }
    .page-strategy-guides__content-block {
        flex-direction: column;
    }
    .page-strategy-guides__content-block--reverse {
        flex-direction: column;
    }
    .page-strategy-guides__image-wrapper,
    .page-strategy-guides__text-content {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-strategy-guides__hero {
        padding: 80px 0;
    }
    .page-strategy-guides__title {
        font-size: 2.2em;
    }
    .page-strategy-guides__subtitle {
        font-size: 1.1em;
    }
    .page-strategy-guides__section {
        padding: 40px 0;
    }
    .page-strategy-guides__section-title {
        font-size: 1.8em;
    }
    .page-strategy-guides__description {
        font-size: 1em;
    }
    .page-strategy-guides__grid,
    .page-strategy-guides__guides-list {
        grid-template-columns: 1fr;
    }
    .page-strategy-guides__cta-final {
        padding: 60px 0;
    }
    .page-strategy-guides__cta-title {
        font-size: 2.2em;
    }
    .page-strategy-guides__cta-text {
        font-size: 1em;
    }
    .page-strategy-guides__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-strategy-guides__cta-button {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-strategy-guides__title {
        font-size: 1.8em;
    }
    .page-strategy-guides__subtitle {
        font-size: 0.9em;
    }
    .page-strategy-guides__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-strategy-guides__section-title {
        font-size: 1.5em;
    }
    .page-strategy-guides__item-title {
        font-size: 1.4em;
    }
    .page-strategy-guides__card-title {
        font-size: 1.2em;
    }
    .page-strategy-guides__cta-title {
        font-size: 1.8em;
    }
    .page-strategy-guides__cta-button {
        width: 90%;
    }
}