* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

body {
    background: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 70px;
}

/* Buttons */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.buttons button {
    background: linear-gradient(#f6d365, #fda085);
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
}

.buttons .active {
    background: linear-gradient(#c7902f, #e6b04c);
}

/* Content */
.content {
    text-align: center;
    line-height: 1.9;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.content p {
    margin-bottom: 10px;
    color: #333;
}

.highlight {
    font-weight: bold;
    color: #000;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.card img {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        height: 50px;
    }

    .content h2 {
        font-size: 20px;
    }
}
.section {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section {
    display: none !important;
}

.section.active {
    display: block !important;
}
.buttons button {
    background: linear-gradient(#f6d365, #fda085);
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover (اختياري) */
.buttons button:hover {
    filter: brightness(0.9);
}

/* Active button */
.buttons button.active {
    background: linear-gradient(#c7902f, #e6b04c);
    filter: brightness(0.85);
    transform: translateY(1px);
}

