/* Reset & basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    color: #333;
    line-height: 1.6;
}

/* Hero sectie */
.hero {
    background: linear-gradient(135deg, #6C63FF, #00C8FF);
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.hero .btn {
    background-color: #FF5A5F;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
.hero .btn:hover {
    background-color: #E04E52;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
}

/* Cards */
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}
.card h3 {
    margin-bottom: 10px;
    color: #6C63FF;
}
.card p {
    font-size: 0.95rem;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: white;
    margin-top: 50px;
}