/* --- INFO LAYOUT --- */
.info-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 40px 40px; /* Added top padding */
    min-height: 100vh; /* Changed from height to min-height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed from center to start */
    opacity: 1;
    overflow-y: auto; /* Allow scroll */
}

/* --- HEADER SECTION --- */
.info-header {
    margin-bottom: 40px;
    text-align: center;
}

.info-title {
    font-size: 2.2rem; /* Reduced from 3rem */
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

/* --- CONTENT SECTION --- */
.info-content {
    font-size: 0.95rem; /* Reduced from 1.1rem */
    line-height: 1.5; /* Tightened from 1.8 */
}

.info-section {
    margin-bottom: 35px; /* Reduced spacing */
}

.info-section h3 {
    font-size: 1.2rem; /* Reduced from 1.5rem */
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--active-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    margin-bottom: 15px;
    color: #333;
    text-align: justify;
}

.signature {
    margin-top: 40px;
    font-style: italic;
    text-align: right;
    color: #666;
    font-family: serif; 
    font-size: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .info-container {
        padding: 120px 20px 80px 20px;
        mask-image: linear-gradient(to bottom, transparent 80px, black 140px);
        -webkit-mask-image: linear-gradient(to bottom, transparent 80px, black 140px);
    }
    
    .info-title {
        font-size: 2.2rem;
    }
}
