/* style/strategy-tips.css */

/* General page styling */
.page-strategy-tips {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-strategy-tips__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for main title */
}

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

.page-strategy-tips__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff; /* White for readability */
}

.page-strategy-tips__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold CTA button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-strategy-tips__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* Content Section */
.page-strategy-tips__content-section {
    padding: 60px 0;
    background-color: #1A202C;
}

.page-strategy-tips__article p {
    margin-bottom: 1em;
    color: #e5dfd3;
}

.page-strategy-tips__article strong {
    color: #FFD700;
}

.page-strategy-tips__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-strategy-tips__sub-section-title {
    font-size: 1.8em;
    color: #ffffff; /* White for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page-strategy-tips__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    color: #e5dfd3;
}

.page-strategy-tips__list li {
    margin-bottom: 0.5em;
}

.page-strategy-tips__image {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-strategy-tips__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-strategy-tips__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-strategy-tips__keyword-link {
    color: #FFD700; /* Gold for keyword links */
    text-decoration: none;
    font-weight: bold;
}

.page-strategy-tips__keyword-link:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-strategy-tips__faq-item {
    background-color: #2c323e; /* Slightly lighter dark background for FAQ items */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-strategy-tips__faq-question {
    color: #FFD700; /* Gold for FAQ questions */
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-strategy-tips__faq-answer {
    color: #e5dfd3;
}

/* CTA Banner at the end */
.page-strategy-tips__cta-banner {
    background: linear-gradient(90deg, #FFD700, #b39700); /* Gold gradient for CTA banner */
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-strategy-tips__cta-title {
    font-size: 2.8em;
    color: #1A202C; /* Dark text on gold */
    margin-bottom: 15px;
}

.page-strategy-tips__cta-text {
    font-size: 1.3em;
    color: #1A202C; /* Dark text on gold */
    margin-bottom: 30px;
}

.page-strategy-tips__cta-link {
    color: #1A202C; /* Dark text for links in CTA */
    font-weight: bold;
    text-decoration: underline;
}

.page-strategy-tips__cta-link:hover {
    color: #4CAF50; /* Green hover for links */
}

.page-strategy-tips__cta-button--large {
    padding: 18px 35px;
    font-size: 1.3em;
    background-color: #1A202C; /* Dark button on gold banner */
    color: #FFD700; /* Gold text on dark button */
    border: 2px solid #FFD700;
}

.page-strategy-tips__cta-button--large:hover {
    background-color: #000000; /* Even darker on hover */
    border-color: #ffffff;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-strategy-tips__main-title {
        font-size: 2.5em;
    }

    .page-strategy-tips__hero-description,
    .page-strategy-tips__cta-text {
        font-size: 1em;
    }

    .page-strategy-tips__section-title {
        font-size: 2em;
    }

    .page-strategy-tips__sub-section-title {
        font-size: 1.5em;
    }

    .page-strategy-tips__cta-button,
    .page-strategy-tips__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-strategy-tips__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-strategy-tips__main-title {
        font-size: 1.8em;
    }

    .page-strategy-tips__hero-section {
        padding: 50px 0;
    }

    .page-strategy-tips__section-title {
        font-size: 1.5em;
    }

    .page-strategy-tips__sub-section-title {
        font-size: 1.2em;
    }

    .page-strategy-tips__faq-question {
        font-size: 1em;
    }

    .page-strategy-tips__cta-banner {
        padding: 30px 20px;
    }

    .page-strategy-tips__cta-title {
        font-size: 1.5em;
    }
}