/* --- INFO LAYOUT --- */
.info-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 40px 100px 40px;
    opacity: 0;
    transition: opacity 1s ease;
    mask-image: linear-gradient(to bottom, transparent 100px, black 180px);
    -webkit-mask-image: linear-gradient(to bottom, transparent 100px, black 180px);
}

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

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

/* --- CONTENT SECTION --- */
.info-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-section {
    margin-bottom: 50px;
}

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

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

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

/* --- 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;
    }
}
