/* ========================================
   MAIN - Global styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #1a1a2e;
    line-height: 1.6;
    margin-top: 70px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* -------------- BUTTON -------------- */
.button {
    background-color: #1a1a2e;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.button:hover {
    background-color: #333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* -------------- SECTION TITLE -------------- */
.section-title {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #a049cc;
    border-radius: 2px;
}

/* -------------- RESPONSIVE -------------- */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
}
