/* ==========================================
   1. STRUCTURE FRAMEWORK & DESIGN CONTAINERS
   ========================================== */
.con-layout-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .con-layout-container {
        padding: 40px 0;
    }
}

/* ==========================================
   2. HERO WELCOME HEADER SECTION
   ========================================== */
.con-hero-strip {
    background: #020b18 linear-gradient(145deg, #020b18 40%, #003366 100%);
    color: #ffffff;
    text-align: center;
}
.con-hero-strip h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 15px;
    color: #ffffff;
}
.con-hero-strip p {
    font-size: 1.15rem;
    color: #b0c4de;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .con-hero-strip h1 { font-size: 2.2rem; }
    .con-hero-strip p { font-size: 1rem; }
}

/* ==========================================
   3. RESPONSIVE GRID LAYOUT ALIGNMENTS
   ========================================== */
.con-main-panel-section {
    background-color: #f8f9fa;
}
.con-flex-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.con-info-column, .con-form-column {
    flex: 1;
}
.con-info-column h2, .con-form-column h2 {
    font-size: 1.8rem;
    color: #0b1a30;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}
.con-info-intro {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* ==========================================
   4. METADATA COMMUNICATION CHANNELS
   ========================================== */
.con-channels-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.con-channel-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.con-icon-frame {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 86, 179, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.con-icon-frame i {
    font-size: 1.3rem;
    color: #0056b3;
}
.con-channel-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #0b1a30;
    font-weight: 600;
}
.con-channel-text p {
    margin: 0;
    color: #495057;
    line-height: 1.5;
}
.con-channel-text a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}
.con-channel-text a:hover {
    text-decoration: underline;
}
.con-sub-note {
    font-size: 0.85rem;
    color: #28a745 !important;
    font-weight: 600;
    margin-top: 4px !important;
}

/* ==========================================
   5. NATIVE SECURE FORM INTERFACES
   ========================================== */
.con-form-column {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f5;
}
.con-native-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.con-input-row {
    display: flex;
    gap: 20px;
}
.con-field-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.con-field-box label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
}
.con-field-box input, 
.con-field-box select, 
.con-field-box textarea {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 12px;
    font-size: 1rem;
    color: #212529;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.con-field-box input:focus, 
.con-field-box select:focus, 
.con-field-box textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}
.con-submit-btn {
    background-color: #000066;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.con-submit-btn:hover {
    background-color: #0b1a30;
}
.con-submit-btn:active {
    transform: scale(0.98);
}

/* ==========================================
   6. RESPONSIVE MOBILE ADJUSTMENTS
   ========================================== */
@media screen and (max-width: 992px) {
    .con-flex-grid {
        flex-direction: column;
        gap: 50px;
    }
    .con-form-column {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }
}
@media screen and (max-width: 576px) {
    .con-input-row {
        flex-direction: column;
        gap: 20px;
    }
    .con-submit-btn {
        width: 100%;
        justify-content: center;
    }
}
