body {
   
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 11, 11, 0.6);
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    width: 160px;
    height: auto;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.store-btn {
    background: #dc2626;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.store-btn i {
    margin-right: 8px;
}

.store-btn:hover {
    background: #b91c1c;
}

/* MAIN */
.main-content {
    flex-grow: 1;
    max-width: 100%;
    margin: auto;
    padding: 48px 16px;
}

/* ABOUT CARD */
.about-card {
    background: #ffffff;
    max-width: 100%;
    margin: auto;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TITLE */
.page-title {
    font-size: 36px;
    text-align: center;
    color: #1f2937;
    font-weight: bold;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

/* TEXT */
.about-text {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text h2 {
    font-size: 24px;
    color: #1f2937;
    margin: 32px 0 16px;
}

.about-text ul {
    padding-left: 20px;
}

.about-text li {
    margin-bottom: 10px;
}

/* BRAND */
.brand {
    color: #dc2626;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .logo {
        width: 140px;
    }

    .about-card {
        padding: 28px;
    }

    .page-title {
        font-size: 28px;
    }

    .about-text {
        font-size: 16px;
    }
}
