* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    background: #ffffff;
    color: #222;
    direction: rtl;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8f3f2;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 95px;
}

nav {
    display: flex;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #0b7a75;
    font-weight: bold;
    transition: 0.3s;
}

nav a:hover {
    color: #f28c28;
}

/* Hero */

.hero {
    padding: 80px 0;
    background: #ffffff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-block;
    background: #e8faf8;
    color: #0b7a75;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #0b7a75;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 2;
}

.main-btn {
    border: none;
    cursor: pointer;
    display: inline-block;
    background: #f28c28;
    color: white;
    padding: 14px 30px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 15px;
}

.main-btn:hover {
    background: #d96d00;
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Menu */

.menu-section {
    padding: 80px 0;
    background: #f9fffe;
    text-align: center;
}

.menu-section h2,
.about-section h2,
.contact-section h2 {
    font-size: 34px;
    color: #0b7a75;
    margin-bottom: 15px;
}

.section-text {
    color: #666;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: white;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: white;
    border-radius: 18px;
    margin-bottom: 15px;
}

.card h3 {
    color: #f28c28;
    margin-bottom: 10px;
}

.card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

/* About */

.about-section {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.about-section p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 2;
    font-size: 17px;
}

/* Contact */

.contact-section {
    padding: 80px 0;
    text-align: center;
    background: #f9fffe;
}

.contact-section p {
    color: #555;
    font-size: 17px;
}

/* Pages */

.page-section {
    padding: 70px 0;
    background: #ffffff;
}

.page-box {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    border: 1px solid #e8f3f2;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.page-box h1 {
    color: #0b7a75;
    font-size: 34px;
    margin-bottom: 20px;
}

.page-box h2 {
    color: #f28c28;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-box p {
    color: #555;
    line-height: 2;
    margin-bottom: 12px;
}

/* Delete Account Form */

.delete-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #0b7a75;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dfeeee;
    border-radius: 14px;
    font-size: 15px;
    background: #ffffff;
    outline: none;
    transition: 0.3s;
    font-family: Tahoma, Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f28c28;
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.08);
}

textarea {
    resize: vertical;
}

/* Footer */

.footer {
    background: #0b7a75;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffd9a8;
}

/* Responsive */

@media (max-width: 900px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .page-box {
        padding: 25px 18px;
    }
}