/* Test Page 2 Styles */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.content h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 1.5rem;
}

.content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content {
        padding: 1.5rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    .content h1 {
        font-size: 1.75rem;
    }
}
