.guide-section {
    padding: 60px 40px;
    text-align: center;
    background-color: #fafafa;
}

.guide-section h1 {
    font-size: 36px;
    color: #a67c52;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.guide-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #a67c52;
}

/* Introductory Paragraph */
.guide-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Highlighted Text */
.highlight {
    color: #a67c52;
    font-weight: bold;
}

/* Guide Topics */
.guide-topic {
    background-color: #fff;
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-topic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.guide-topic h2 {
    font-size: 24px;
    color: #a67c52;
    margin-bottom: 10px;
}

.guide-topic p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Conclusion Paragraph */
.guide-conclusion {
    background-color: #fff;
    padding: 40px;
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.guide-conclusion p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-section {
        padding: 40px 20px;
    }

    .guide-section h1 {
        font-size: 28px;
    }

    .guide-topic h2 {
        font-size: 20px;
    }

    .guide-topic p,
    .guide-intro,
    .guide-conclusion p {
        font-size: 15px;
    }
}
