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

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

.page-expert-strategy__hero-section {
    background: linear-gradient(135deg, #0047AB 0%, #0028ff 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-expert-strategy__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-expert-strategy__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-expert-strategy__content-section {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.page-expert-strategy__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .page-expert-strategy__grid {
        grid-template-columns: 1fr;
    }
    .page-expert-strategy__sidebar {
        order: -1; /* Sidebar appears above main content on smaller screens */
    }
}

.page-expert-strategy__main-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-strategy__section-title {
    font-size: 2em;
    color: #0047AB;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
}

.page-expert-strategy__sub-title {
    font-size: 1.5em;
    color: #0047AB;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-expert-strategy__main-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-expert-strategy__main-content li {
    margin-bottom: 8px;
}

.page-expert-strategy__image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-expert-strategy__cta-block {
    background-color: #e6f0ff;
    border: 1px solid #0047AB;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-expert-strategy__cta-block .page-expert-strategy__section-title {
    color: #0047AB;
    border-bottom: none;
    margin-top: 0;
}

.page-expert-strategy__cta-block p {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-expert-strategy__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-expert-strategy__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-expert-strategy__btn--primary {
    background-color: #FFD700;
    color: #0047AB;
    border: 2px solid #FFD700;
}

.page-expert-strategy__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-expert-strategy__btn--secondary {
    background-color: #0047AB;
    color: #fff;
    border: 2px solid #0047AB;
}

.page-expert-strategy__btn--secondary:hover {
    background-color: #003a8a;
    border-color: #003a8a;
    transform: translateY(-2px);
}

.page-expert-strategy__btn--tertiary {
    background-color: transparent;
    color: #0047AB;
    border: 2px solid #0047AB;
}

.page-expert-strategy__btn--tertiary:hover {
    background-color: #0047AB;
    color: #fff;
    transform: translateY(-2px);
}

.page-expert-strategy__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

.page-expert-strategy__btn--full-width {
    width: 100%;
    text-align: center;
}

.page-expert-strategy__detail-pages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-expert-strategy__detail-card {
    background-color: #f0f8ff;
    border: 1px solid #cceeff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-expert-strategy__detail-card-title {
    font-size: 1.3em;
    color: #0047AB;
    margin-bottom: 10px;
}

.page-expert-strategy__detail-card-title a {
    color: #0047AB;
    text-decoration: none;
}

.page-expert-strategy__detail-card-title a:hover {
    text-decoration: underline;
}

.page-expert-strategy__detail-card-description {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
    flex-grow: 1;
}

.page-expert-strategy__sidebar {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-expert-strategy__sidebar-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-expert-strategy__sidebar-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-expert-strategy__sidebar-title {
    font-size: 1.6em;
    color: #0047AB;
    margin-bottom: 20px;
    text-align: center;
}

.page-expert-strategy__sidebar-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.page-expert-strategy__sidebar p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-expert-strategy__hero-title {
        font-size: 2em;
    }
    .page-expert-strategy__hero-description {
        font-size: 1em;
    }
    .page-expert-strategy__section-title {
        font-size: 1.7em;
    }
    .page-expert-strategy__sub-title {
        font-size: 1.3em;
    }
    .page-expert-strategy__cta-buttons {
        flex-direction: column;
    }
    .page-expert-strategy__btn {
        width: 100%;
    }
    .page-expert-strategy__detail-pages-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-expert-strategy__hero-section,
    .page-expert-strategy__content-section,
    .page-expert-strategy__main-content,
    .page-expert-strategy__sidebar {
        padding: 20px;
    }
    .page-expert-strategy__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-expert-strategy__hero-title {
        font-size: 1.8em;
    }
    .page-expert-strategy__section-title {
        font-size: 1.5em;
    }
}