@font-face {
    font-family: 'DMSerifDisplay';
    src: url('/img/fonts/DMSerifDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.audio-tour-guide-page {
    background: #ffffff;
    color: #0d3542;
}

.audio-tour-guide-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.audio-tour-guide-hero {
    padding: 150px 20px 90px;
    text-align: center;
    background: linear-gradient(135deg, #00843e 0%, #007f79 100%);
}

.audio-tour-guide-hero h1 {
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ffffff;
    font-family: 'DMSerifDisplay', Georgia, serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.audio-tour-guide-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    line-height: 1.55;
}

.audio-tour-guide-questions {
    padding: 90px 24px;
}

.audio-tour-guide-content {
    display: grid;
    gap: 22px;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.audio-tour-question {
    padding: 30px 34px;
    background: #f8f9fa;
    border: 1px solid rgba(13, 53, 66, 0.08);
    border-left: 5px solid #60c6c7;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(13, 53, 66, 0.06);
}

.audio-tour-question h2 {
    margin: 0 0 12px;
    color: #0d3542;
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.3;
}

.audio-tour-question p {
    margin: 0;
    color: #425a62;
    font-size: 1.08rem;
    line-height: 1.75;
}

.audio-tour-guide-cta {
    padding: 80px 20px;
    text-align: center;
    background: #e8f5f2;
    border-top: 1px solid rgba(0, 127, 121, 0.12);
}

.audio-tour-guide-cta h2 {
    margin: 0 0 14px;
    color: #0d3542;
    font-family: 'DMSerifDisplay', Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 400;
    line-height: 1.15;
}

.audio-tour-guide-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #425a62;
    font-size: 1.2rem;
    line-height: 1.6;
}

.audio-tour-store-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.audio-tour-store-buttons a {
    display: inline-flex;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.audio-tour-store-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 53, 66, 0.18);
}

.audio-tour-store-buttons a:focus-visible {
    outline: 3px solid #007f79;
    outline-offset: 4px;
}

.audio-tour-store-buttons img {
    display: block;
    width: auto;
    height: 54px;
}

@media (max-width: 768px) {
    .audio-tour-guide-hero {
        padding: 120px 15px 65px;
    }

    .audio-tour-guide-questions {
        padding: 60px 15px;
    }

    .audio-tour-question {
        padding: 24px 22px;
    }

    .audio-tour-question p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .audio-tour-guide-cta {
        padding: 60px 15px;
    }

    .audio-tour-guide-cta p {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .audio-tour-guide-hero {
        padding-top: 105px;
    }

    .audio-tour-question {
        padding: 22px 18px;
        border-left-width: 4px;
    }

    .audio-tour-store-buttons {
        flex-direction: column;
    }

    .audio-tour-store-buttons img {
        height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .audio-tour-store-buttons a {
        transition: none;
    }

    .audio-tour-store-buttons a:hover {
        transform: none;
    }
}
