/* GLOBAL */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4b00ff, #00bfff);
    color: #222;
}

a { text-decoration: none; font-weight: bold; }

/* HEADER */
.header {
    background: linear-gradient(90deg, #4b00ff, #8e2de2);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo { height: 70px; }

.brand {
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.login-btn {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    color: #4b00ff;
    font-weight: bold;
}

/* HERO */
.hero {
    text-align: center;
    color: white;
    padding: 40px 10px;
}

.hero h1 {
    font-size: 36px;
    font-weight: bold;
}

.hero p { font-size: 18px; }

/* CARD */
.card {
    background: #ffffffee; 
    width: 90%;
    max-width: 900px;
    margin: 25px auto;
    padding: 25px;
    border-radius: 12px;
}

/* TITLES */
.sec-title {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #4b00ff, #8e2de2);
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
}

/* COLOR TAGS */
.blue { color: #4b6aff; }
.purple { color: #8e2de2; }
.pink { color: #ff2fa8; }

.card ul li {
    padding: 5px 0;
    font-size: 18px;
}

/* CEO TITLE */
.ceo-title {
    font-size: 22px;
    margin-top: 20px;
    font-weight: bold;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 20px;
    background: #ffffffaa;
    margin-top: 40px;
    font-size: 16px;
}
