.page-guides {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for dark background */
    background-color: #121212; /* Very dark background for contrast */
}

.page-guides .highlight {
    color: #E7C200; /* Accent color for highlights */
}

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

.page-guides__hero {
    background: linear-gradient(135deg, #1A2E44 0%, #0a1725 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.page-guides__hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-guides__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #ffffff;
}

.page-guides__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-guides__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-guides__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-guides__button--primary {
    background-color: #E7C200; /* Accent color */
    color: #1A2E44; /* Dark text on accent background */
    border: 2px solid #E7C200;
}

.page-guides__button--primary:hover {
    background-color: #ffda44;
    transform: translateY(-2px);
}

.page-guides__button--secondary {
    background-color: transparent;
    color: #E7C200; /* Accent text on dark background */
    border: 2px solid #E7C200;
}

.page-guides__button--secondary:hover {
    background-color: #E7C200;
    color: #1A2E44;
    transform: translateY(-2px);
}

.page-guides__button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #E7C200;
    color: #1A2E44;
    border: none;
}

.page-guides__button--large:hover {
    background-color: #ffda44;
    transform: translateY(-3px);
}

.page-guides__hero-image-container {
    margin-top: 40px;
    width: 100%;
    max-width: 900px;
}

.page-guides__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-guides__introduction, .page-guides__overview, .page-guides__benefits, .page-guides__faq, .page-guides__cta-final {
    padding: 60px 0;
    background-color: #1a1a1a;
    border-bottom: 1px solid #2e2e2e;
}

.page-guides__section-title {
    font-size: 2.8em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    position: relative;
}

.page-guides__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #E7C200;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-guides__introduction p, .page-guides__overview p, .page-guides__benefits p, .page-guides__faq p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #cccccc;
    text-align: justify;
}

.page-guides__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-guides__grid-item:hover {
    transform: translateY(-5px);
    background-color: #333333;
}

.page-guides__grid-item h3 {
    font-size: 1.5em;
    color: #E7C200;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-guides__grid-item p {
    font-size: 1em;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.page-guides__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(231, 194, 0, 0.5));
}

.page-guides__link-text {
    color: #E7C200;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-guides__link-text:hover {
    color: #ffda44;
    text-decoration: underline;
}

.page-guides__link-inline {
    color: #E7C200;
    text-decoration: none;
    font-weight: bold;
}

.page-guides__link-inline:hover {
    text-decoration: underline;
}

.page-guides__cta-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    color: #e0e0e0;
}

.page-guides__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-guides__benefit-item {
    background-color: #262626;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-guides__benefit-item h3 {
    font-size: 1.4em;
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-guides__benefit-item p {
    font-size: 1em;
    color: #b0b0b0;
}

.page-guides__benefit-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(231, 194, 0, 0.5));
}

.page-guides__faq-item {
    background-color: #262626;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-guides__faq-item h3 {
    font-size: 1.3em;
    color: #E7C200;
    margin-bottom: 10px;
}

.page-guides__faq-item p {
    font-size: 1em;
    color: #cccccc;
}

.page-guides__cta-final {
    text-align: center;
    padding: 80px 0;
    background-color: #1A2E44; /* Main dark color */
    color: #ffffff;
}

.page-guides__cta-final p {
    font-size: 1.2em;
    margin-top: 25px;
    color: #e0e0e0;
}

.page-guides__note {
    font-style: italic;
    font-size: 1em;
    color: #b0b0b0;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-guides__hero-title {
        font-size: 2.8em;
    }
    .page-guides__hero-subtitle {
        font-size: 1.2em;
    }
    .page-guides__section-title {
        font-size: 2.2em;
    }
    .page-guides__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-guides__hero {
        flex-direction: column;
        padding: 60px 0;
    }
    .page-guides__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-guides__hero-title {
        font-size: 2.2em;
    }
    .page-guides__hero-subtitle {
        font-size: 1em;
    }
    .page-guides__button {
        width: 80%;
        max-width: 300px;
    }
    .page-guides__section-title {
        font-size: 1.8em;
    }
    .page-guides__introduction, .page-guides__overview, .page-guides__benefits, .page-guides__faq, .page-guides__cta-final {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-guides__hero-title {
        font-size: 1.8em;
    }
    .page-guides__hero-subtitle {
        font-size: 0.9em;
    }
    .page-guides__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-guides__section-title {
        font-size: 1.5em;
    }
    .page-guides__grid, .page-guides__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-guides__grid-item, .page-guides__benefit-item {
        padding: 20px;
    }
    .page-guides__faq-item h3 {
        font-size: 1.1em;
    }
    .page-guides__faq-item p {
        font-size: 0.9em;
    }
    .page-guides__button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}