/* ===== CSS Variables ===== */
:root {
    --primary-color: #e94560;
    --secondary-color: #0f3460;
    --dark-bg: #1a1a2e;
    --dark-secondary: #16213e;
    --text-color: #eaeaea;
    --text-muted: #a0a0a0;
    --accent-gradient: linear-gradient(135deg, #e94560 0%, #0f3460 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

body.lang-en {
    font-family: 'Inter', sans-serif;
    direction: ltr;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

body.lang-ar .btn,
.btn {
    font-family: 'Cairo', sans-serif;
}

body.lang-en .btn {
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #d63050;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

.btn-full {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-name-en {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    gap: 8px;
}

body.lang-en .nav-list {
    gap: 8px;
}

.nav-list a {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-list a:hover,
.nav-list a.active {
    color: #fff;
    background: rgba(233, 69, 96, 0.2);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 15px;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}

body.lang-en .lang-btn {
    font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.divider {
    color: var(--border-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, #0a0a1a 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(15, 52, 96, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 20px 60px;
}

.hero-content h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 40%; animation-delay: 4s; animation-duration: 22s; }
.particle:nth-child(4) { left: 60%; animation-delay: 6s; animation-duration: 16s; }
.particle:nth-child(5) { left: 80%; animation-delay: 8s; animation-duration: 24s; }

body.lang-en .particle:nth-child(1) { left: 90%; }
body.lang-en .particle:nth-child(2) { left: 80%; }
body.lang-en .particle:nth-child(3) { left: 60%; }
body.lang-en .particle:nth-child(4) { left: 40%; }
body.lang-en .particle:nth-child(5) { left: 20%; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===== About Section ===== */
.about {
    background: var(--dark-secondary);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-list {
    margin: 25px 0;
}

body.lang-ar .about-list {
    padding-right: 0;
}

body.lang-en .about-list {
    padding-left: 0;
}

.about-list li {
    position: relative;
    padding: 0;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-color);
}

body.lang-ar .about-list li {
    padding-right: 30px;
}

body.lang-en .about-list li {
    padding-left: 30px;
}

body.lang-ar .about-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

body.lang-en .about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Company Info Box */
.company-info-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
}

.company-info-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.info-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 150px;
}

.info-value {
    color: var(--text-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Policy Sections ===== */
.privacy,
.terms {
    background: var(--dark-secondary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-box {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.policy-box:hover {
    border-color: rgba(233, 69, 96, 0.3);
}

.policy-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-box p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
}

.policy-box ul {
    padding: 0;
}

body.lang-ar .policy-box ul {
    padding-right: 0;
}

body.lang-en .policy-box ul {
    padding-left: 0;
}

.policy-box ul li {
    position: relative;
    padding: 0;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

body.lang-ar .policy-box ul li {
    padding-right: 25px;
}

body.lang-en .policy-box ul li {
    padding-left: 25px;
}

body.lang-ar .policy-box ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

body.lang-en .policy-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: var(--primary-color);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ===== Contact Section ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

body.lang-en .contact-item {
    flex-direction: row-reverse;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.contact-text p,
.contact-text a {
    font-size: 15px;
    color: var(--text-muted);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

body.lang-ar .contact-form-wrapper {
    text-align: right;
}

body.lang-en .contact-form-wrapper {
    text-align: left;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

body.lang-ar .form-group input,
body.lang-ar .form-group textarea {
    font-family: 'Cairo', sans-serif;
    text-align: right;
}

body.lang-en .form-group input,
body.lang-en .form-group textarea {
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #10b981;
    color: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.toast-icon {
    width: 24px;
    height: 24px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo span {
    font-size: 20px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-links h4,
.footer-services h4,
.footer-company h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li,
.footer-services ul li,
.footer-company ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

body.lang-ar .footer-links ul li a:hover {
    padding-right: 5px;
}

body.lang-en .footer-links ul li a:hover {
    padding-left: 5px;
}

.footer-links ul li a {
    font-size: 15px;
    color: var(--text-muted);
}

.footer-services ul li,
.footer-company ul li {
    font-size: 15px;
    color: var(--text-muted);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 42px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .language-toggle {
        display: none;
    }
    
    .nav-list {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 75px);
        background: var(--dark-secondary);
        flex-direction: column;
        padding: 40px 30px;
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
    }
    
    body.lang-en .nav-list {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--border-color);
    }
    
    .nav-list.active {
        right: 0;
    }
    
    body.lang-en .nav-list.active {
        right: auto;
        left: 0;
    }
    
    .nav-list a {
        padding: 15px 20px;
        border-radius: 10px;
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .footer-links ul,
    .footer-services ul,
    .footer-company ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links ul li,
    .footer-services ul li,
    .footer-company ul li {
        margin-bottom: 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .company-info-box {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .policy-box {
        padding: 20px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content,
.services-grid,
.contact-content {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d63050;
}

/* Mobile Language Toggle */
.mobile-lang-toggle {
    display: none;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .mobile-lang-toggle {
        display: flex;
    }
    
    .mobile-lang-btn {
        padding: 10px 25px;
        border-radius: 20px;
        border: 2px solid var(--border-color);
        background: transparent;
        color: var(--text-muted);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        font-family: 'Cairo', sans-serif;
    }
    
    body.lang-en .mobile-lang-btn {
        font-family: 'Inter', sans-serif;
    }
    
    .mobile-lang-btn.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }
}

/* ===== Projects Section ===== */
.projects {
    background: var(--dark-bg);
}

.projects-content {
    max-width: 900px;
    margin: 0 auto;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.2);
}

.project-card.featured {
    border: 2px solid var(--primary-color);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

body.lang-en .project-badge {
    right: auto;
    left: 20px;
}

.project-image {
    width: 100%;
    height: 250px;
    background: var(--dark-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image svg {
    width: 100%;
    height: 100%;
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.project-info p {
    font-size: 15px;
    color: var(--text-muted);
    line-height:1.8;
    margin-bottom: 20px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: rgba(233, 69, 96, 0.15);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.projects-note {
    text-align: center;
    margin-top: 40px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.projects-note p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Permission Items */
.permission-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    border: 1px solid var(--border-color);
}

.permission-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.permission-item p {
    font-size: 14px;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .project-image {
        height: 180px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 24px;
    }
    
    .permission-item {
        padding: 20px;
    }
}
