/* Welcome Message Card Styling */
.welcome-message-card {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
}

/* Card Content Padding */
.card-header-title,
.welcome-content-card {
    padding: 0 40px;
}

.card-header-title {
    padding-top: 40px;
}

/* Card Header Title */
.card-header-title {
    text-align: left;
    margin-bottom: 25px;
}

.welcome-title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    font-family: inherit;
}

/* Welcome Content Card */
.welcome-content-card {
    padding-bottom: 35px;
}

.welcome-greeting {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
    text-align: left;
    font-family: inherit;
    font-weight: 600;
}

.welcome-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 15px;
    text-align: justify;
    font-family: inherit;
}

.welcome-text strong {
    color: #333333;
    font-weight: 700;
}

.welcome-text.highlight-text {
    color: #555555;
}

.welcome-text.highlight-text strong {
    color: #333333;
    font-weight: 700;
}

.welcome-text:last-of-type {
    margin-bottom: 20px;
}

/* Signature Section */
.signature-section {
    margin-top: 20px;
    text-align: left;
}

.signature-name {
    font-size: 15px;
    color: #555555;
    margin: 5px 0;
    font-weight: 400;
    font-family: inherit;
}

.signature-title {
    font-size: 14px;
    color: #666;
    margin: 3px 0;
}

.signature-event {
    font-size: 14px;
    color: #666;
    margin: 3px 0;
}

/* Welcome Banner Footer - Inside Card */
.welcome-banner-footer {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.welcome-banner-footer .skyline-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .card-header-title,
    .welcome-content-card {
        padding: 0 30px;
    }
    
    .card-header-title {
        padding-top: 35px;
    }
    
    .welcome-content-card {
        padding-bottom: 30px;
    }
    
    .welcome-title {
        font-size: 32px;
    }
    
    .welcome-text,
    .welcome-greeting {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .card-header-title,
    .welcome-content-card {
        padding: 0 20px;
    }
    
    .card-header-title {
        padding-top: 30px;
    }
    
    .welcome-content-card {
        padding-bottom: 25px;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .welcome-text,
    .welcome-greeting {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
    
    .signature-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .card-header-title,
    .welcome-content-card {
        padding: 0 15px;
    }
    
    .card-header-title {
        padding-top: 25px;
    }
    
    .welcome-content-card {
        padding-bottom: 20px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-text,
    .welcome-greeting {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .signature-name {
        font-size: 13px;
    }
}
