/* Appeal Page Specific Styles */

/* Appeal Hero Section */
.appeal-hero {
    width: 100%;
    display: block;
}

.hero-background {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 134, 171, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 2px;
}

/* Tab Navigation - 기존 company.css 스타일 상속 */

/* Appeal Process Section */
.appeal-process-section {
    padding: 80px 0;
    background: white;
}

.appeal-header {
    text-align: center;
    margin-bottom: 60px;
}

.appeal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 30px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #2E86AB 50%, transparent 100%);
}

.appeal-title {
    font-size: 24px;
    font-weight: 600;
    color: #2E86AB;
    letter-spacing: 3px;
    white-space: nowrap;
}

/* Appeal Table Section */
.appeal-table-section {
    margin-bottom: 60px;
    overflow-x: auto;
}

.appeal-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.appeal-table thead {
    background: linear-gradient(135deg, #2E86AB 0%, #4A90E2 100%);
}

.appeal-table th {
    padding: 20px 15px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.appeal-table th:last-child {
    border-right: none;
}

.step-col {
    width: 10%;
}

.content-col {
    width: 50%;
}

.period-col {
    width: 20%;
}

.responsible-col {
    width: 20%;
}

.appeal-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.appeal-table tbody tr:hover {
    background-color: #f8f9fa;
}

.appeal-table tbody tr:last-child {
    border-bottom: none;
}

.appeal-table td {
    padding: 18px 15px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.step-number {
    font-weight: 700;
    color: #2E86AB;
    font-size: 16px;
}

.step-content {
    text-align: left;
    font-weight: 500;
}

.step-period {
    color: #666;
}

.step-responsible {
    color: #666;
    font-weight: 500;
}

/* Appeal Details Section */
.appeal-details-section {
    margin-top: 60px;
}

.details-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2E86AB;
    display: inline-block;
}

.details-content {
    margin-bottom: 30px;
}

.details-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.details-list li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #2E86AB;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Procedure Steps */
.procedure-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.procedure-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.procedure-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E86AB 0%, #4A90E2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 36px;
    }
    
    .appeal-process-section {
        padding: 60px 0;
    }
    
    .procedure-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .appeal-process-section {
        padding: 50px 0;
    }
    
    .appeal-header {
        margin-bottom: 40px;
    }
    
    .appeal-divider {
        margin-bottom: 30px;
        gap: 20px;
    }
    
    .appeal-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .divider-line {
        width: 50px;
    }
    
    .appeal-table th {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .appeal-table td {
        padding: 15px 10px;
        font-size: 13px;
    }
    
    .step-col {
        width: 15%;
    }
    
    .content-col {
        width: 45%;
    }
    
    .period-col {
        width: 20%;
    }
    
    .responsible-col {
        width: 20%;
    }
    
    .details-title {
        font-size: 18px;
    }
    
    .details-content p {
        font-size: 14px;
    }
    
    .details-list li {
        font-size: 13px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info p {
        font-size: 13px;
    }
    
    .procedure-step {
        padding: 20px;
        gap: 15px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .step-text h5 {
        font-size: 15px;
    }
    
    .step-text p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .appeal-hero {
        height: 300px;
    }
    
    .appeal-process-section {
        padding: 40px 0;
    }
    
    .appeal-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .appeal-table th {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .appeal-table td {
        padding: 12px 8px;
        font-size: 11px;
    }
    
    .step-content {
        font-size: 11px;
    }
    
    .details-title {
        font-size: 16px;
    }
    
    .details-content p {
        font-size: 13px;
    }
    
    .details-list li {
        font-size: 12px;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .contact-info p {
        font-size: 12px;
    }
    
    .procedure-step {
        padding: 15px;
        gap: 12px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .step-text h5 {
        font-size: 14px;
    }
    
    .step-text p {
        font-size: 12px;
    }
}
