:root {
    --bg-page: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #1e293b;
    --text-muted: #64748b;
    --color-brand-blue: #9BC8DB;
    --font-family: 'Arvo', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chip-container {
    width: 100%;
    max-width: 500px;
    background-color: var(--bg-card);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.image-section {
    width: 100%;
    overflow: hidden;
}

.chip-img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section {
    width: 100%;
    padding: 24px 20px 24px 20px;
    text-align: center;
    box-sizing: border-box;
}

.main-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-brand-blue);
    margin-bottom: 16px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 400;
}

.body-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    font-weight: 400;
}

.highlight-blue {
    color: var(--color-brand-blue);
    font-weight: 700;
}

.bold-text {
    font-weight: 700;
}

/* Desktop Styles */
@media (min-width: 481px) {
    body {
        padding: 20px 0;
    }
    .chip-container {
        min-height: auto;
        border-radius: 16px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        overflow: hidden; /* Ensures the image respects border-radius at the top */
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .content-section {
        padding: 16px 16px 20px 16px;
    }
    .main-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .intro-text, .body-text {
        font-size: 13px;
        margin-bottom: 12px;
    }
}
