.admin-actions {
    margin-top: 30px;
    padding: 0 15px;
}

.btn-admin {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-admin:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
    text-decoration: none;
}

@media print {
    .admin-actions {
        display: none !important;
    }
}


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

.logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
    display: inline-block;
}

.dual-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dual-logo-img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin: 0;
    display: inline-block;
}

@media (max-width: 768px) {
    .dual-logos-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .dual-logo-img {
        max-height: 50px;
    }
}

.process-container {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    gap: 20px;
}

.process-box-wrapper {
    flex: 0 1 250px;
    display: flex;
    justify-content: center;
}

.process-box {
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    min-height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.white-box {
    background: #fff;
    border: 1px solid #ddd;
}

.blue-box {
    background: #4a90e2;
}

.blue-box h3 {
    color: white;
}

.orange-box {
    background: #ff9800;
    width: 250px;
    margin: 20px auto;
}

.orange-box h3 {
    color: white;
}

.process-box h3 {
    margin: 0;
    font-size: 1.2em;
    line-height: 1.4;
    color: #333;
}

.arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.orange-arrow {
    color: #ff9800;
    font-size: 2em;
}

.vertical-arrow {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.red-arrow {
    color: #dc3545;
    font-size: 2em;
}

.info-block {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: auto;
    margin-bottom: 20px;
}

.info-title {
    color: #0d6efd;
    font-size: 1.2em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.info-list {
    margin-bottom: 15px;
}

.info-list li {
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
}

.info-text {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 0;
}

.info-content {
    font-size: 0.95em;
}

.info-item {
    margin-bottom: 15px;
}

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

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: #444;
}

.info-item p {
    color: #666;
}

.contact-section .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .process-row {
        flex-direction: column;
        gap: 15px;
    }

    .process-box-wrapper {
        width: 100%;
        max-width: 250px;
    }

    .arrow-wrapper {
        transform: rotate(90deg);
    }
}

.col-md-4 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
