/* Clean Minimal Design */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background: #FAFAFA;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.scroll-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.parchment {
    background: transparent;
    padding: 0;
}

.scroll-content {
    text-align: left;
}

/* Main heading */
.scroll-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 3rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* Body text */
.scroll-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #404040;
    margin-bottom: 2rem;
    font-weight: 400;
}

.scroll-content p:last-child {
    margin-bottom: 0;
}

/* Links styling */
.scroll-content a {
    color: #1A1A1A;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #E5E5E5;
    transition: border-color 0.2s ease;
}

.scroll-content a:hover {
    border-bottom-color: #1A1A1A;
}

/* Strong text */
.scroll-content strong {
    font-weight: 600;
    color: #1A1A1A;
}

/* Remove flourish */
.flourish {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-container {
        padding: 6rem 1.5rem;
    }
    
    .scroll-content h1 {
        font-size: 2.25rem;
    }
    
    .scroll-content p {
        font-size: 1.0625rem;
    }
}

@media (max-width: 480px) {
    .scroll-container {
        padding: 4rem 1.25rem;
    }
    
    .scroll-content h1 {
        font-size: 2rem;
    }
    
    .scroll-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}
