*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    direction: rtl;
}

.details-container {
    font-family: 'Cairo', sans-serif;
    max-width: 1100px;
    margin: auto;
    padding: 115px 20px;
    color: #333;
}

.details-header {
    text-align: center;
    margin-bottom: 30px;
}

    .details-header h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
        color: #2c3e50;
    }

    .details-header .tag {
        background-color: #3498db;
        color: white;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.95em;
    }

.details-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.image-box img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box {
    flex: 1;
    min-width: 280px;
}

    .info-box .description {
        font-size: 1.1em;
        margin-bottom: 20px;
        line-height: 1.7;
    }

.workshop-info {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .workshop-info li {
        margin: 10px 0;
        font-size: 1em;
    }

    .workshop-info i {
        margin-left: 8px;
        color: #3498db;
    }

.external-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

    .external-link i {
        margin-left: 6px;
    }

.action-buttons a {
    display: inline-block;
    margin-right: 15px;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

    .action-buttons a.btn-back {
        background-color: #95a5a6;
    }

    .action-buttons a:hover {
        background-color: #063b5c;
    }

    .action-buttons a.btn-register:hover {
        background-color: #27ae60;
    }

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.btn-register, .btn-back {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-register {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
}

    .btn-register:hover {
        background-color: #3e8e41;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(76, 175, 80, 0.3);
    }

.btn-back {
    background-color: #f1f1f1;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .btn-back:hover {
        background-color: #e0e0e0;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

.btn-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-register, .btn-back {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 426px) {
    .details-container {
        padding-top: 200px;
    }
}
