
/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F5F5F7;
    color: #2A2A35;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== Header ===== */
header {
    background: #1F1F2B;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #C0A3D7;
}

/* ===== Navigation ===== */
nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #C0A3D7;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav ul {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1F1F2B;
        flex-direction: column;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.btn-primary {
    background: #C0A3D7;
    color: #ffffff !important;
}

.btn-primary:hover {
    background: #b18ccc;
}

.btn-outline {
    border: 1px solid #C0A3D7;
    color: #C0A3D7;
}

.btn-outline:hover {
    background: #D7A3D4;
    color: #fff;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #1F1F2B, #C0A3D7);
    color: #fff;
    padding: 80px 0;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero p {
    max-width: 600px;
    margin-bottom: 20px;
}

/* ===== Sections ===== */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1F1F2B;
}

/* ===== Cards ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #666;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.card:hover {
    border: 1px solid #C0A3D7;
    transform: translateY(-5px);
}

/* ===== Image Placeholder ===== */
.img-placeholder {
    width: 100%;
    height: 180px;
    background: #ddd;
    margin-bottom: 15px;
}

/* ===== Dark Section ===== */
.section-dark {
    background: #2A2A35;
    color: #fff;
}

.section-dark .section-title {
    color: #fff;
}

/* ===== Footer ===== */
footer {
    background: #1F1F2B;
    color: #ccc;
    padding: 40px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer h4 {
    margin-bottom: 10px;
    color: #fff;
}

.footer a {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.footer a:hover {
    color: #C0A3D7;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 13px;
    text-align: center;
}

/* ===== Tables ===== */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

table th, table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

/* ===== Forms ===== */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

form button {
    border: none;
    cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 26px;
    }
}
.footer ul {
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: #ccc;
    font-size: 14px;
    display: inline-block;
}

.footer ul li a:hover {
    color: #C0A3D7;
}
img {
max-width: 100%;
height: auto;
display: block;
}