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

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

.page-guides__hero-section {
    background: linear-gradient(135deg, #FFD700, #2F4F4F);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-guides__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: page-guides-bubble1 15s infinite ease-in-out;
}

.page-guides__hero-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: page-guides-bubble2 20s infinite ease-in-out;
}

@keyframes page-guides-bubble1 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(100px, 50px) scale(1.2); opacity: 0.8; }
    100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

@keyframes page-guides-bubble2 {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    50% { transform: translate(-80px, -60px) scale(1.1); opacity: 0.9; }
    100% { transform: translate(0, 0) scale(1); opacity: 1; }
}

.page-guides__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-guides__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-guides__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-guides__button--primary {
    background-color: #FFD700; /* Gold */
    color: #2F4F4F; /* Dark Slate Gray */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-guides__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-guides__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-guides__button--secondary:hover {
    background-color: #FFD700;
    color: #2F4F4F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-guides__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-guides__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-guides__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-guides__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-guides__section-title {
    font-size: 2.5em;
    color: #2F4F4F; /* Dark Slate Gray */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-guides__sub-section-title {
    font-size: 1.8em;
    color: #2F4F4F;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-guides__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

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

.page-guides__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-guides__image--left {
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
    max-width: 350px;
}

.page-guides__image-wrapper--right {
    order: 2;
}

.page-guides__text-content--left {
    order: 1;
}

.page-guides__grid {
    display: grid;
    gap: 30px;
}

.page-guides__grid--2-cols {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-guides__grid--3-cols {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-guides__card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-guides__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-guides__card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    border-bottom: 2px solid #2F4F4F;
    padding-bottom: 10px;
}

.page-guides__card p, .page-guides__card ul {
    font-size: 1.05em;
    color: #555;
}

.page-guides__card ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    margin-top: 15px;
}

.page-guides__card li {
    margin-bottom: 8px;
}

.page-guides__link-text {
    color: #2F4F4F;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

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

.page-guides__cta-banner {
    background-color: #2F4F4F;
    color: #FFFFFF;
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-guides__cta-banner p {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.page-guides__cta-banner--small p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-guides__list {
    list-style-type: decimal;
    margin-left: 25px;
    padding-left: 0;
    color: #444;
    font-size: 1.1em;
    margin-top: 20px;
}

.page-guides__list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.page-guides__text-center {
    text-align: center;
}

.page-guides__cta-group--center {
    margin-top: 40px;
}

.page-guides__related-guides .page-guides__guide-card {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-guides__related-guides .page-guides__guide-card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #2F4F4F;
    border-bottom: none;
    padding-bottom: 0;
}

.page-guides__related-guides .page-guides__guide-card-title a {
    color: #2F4F4F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-guides__related-guides .page-guides__guide-card-title a:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-guides__related-guides .page-guides__guide-card-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-guides__hero-title {
        font-size: 2.5em;
    }
    .page-guides__hero-subtitle {
        font-size: 1.1em;
    }
    .page-guides__section-title {
        font-size: 2em;
    }
    .page-guides__grid--2-cols {
        grid-template-columns: 1fr;
    }
    .page-guides__grid--3-cols {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-guides__content-wrapper {
        flex-direction: column;
    }
    .page-guides__image-wrapper--right {
        order: 1;
    }
    .page-guides__text-content--left {
        order: 2;
    }
    .page-guides__image--left {
        float: none;
        margin: 0 auto 20px;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-guides__hero-section {
        padding: 80px 0 60px;
    }
    .page-guides__hero-title {
        font-size: 2em;
    }
    .page-guides__hero-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-guides__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-guides__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-guides__section {
        padding: 40px 0;
    }
    .page-guides__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-guides__card {
        padding: 25px;
    }
    .page-guides__card-title {
        font-size: 1.4em;
    }
    .page-guides__cta-banner p {
        font-size: 1.2em;
    }
    .page-guides__list {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-guides__hero-title {
        font-size: 1.8em;
    }
    .page-guides__hero-subtitle {
        font-size: 0.9em;
    }
    .page-guides__section-title {
        font-size: 1.6em;
    }
    .page-guides__button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-guides__button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
    .page-guides__card-title {
        font-size: 1.2em;
    }
    .page-guides__cta-banner p {
        font-size: 1em;
    }
    .page-guides__list {
        font-size: 0.95em;
    }
}