/* ===========================
   Global Styles
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fb;
    color: #1f2937;
}

/* ===========================
   Layout
=========================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

/* ===========================
   Hero Section
=========================== */

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h1 {
    font-size: 2.7rem;
    color: #1d4ed8;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* ===========================
   Cards
=========================== */

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    width: 360px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
    color: inherit;

    box-shadow: 0 8px 25px rgba(0,0,0,0.08);

    transition: all 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

.card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.card h2 {
    color: #111827;
    margin-bottom: 12px;
}

.card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* ===========================
   Buttons
=========================== */

.button {
    display: inline-block;

    padding: 12px 22px;

    background: #2563eb;
    color: white;

    border-radius: 8px;

    font-weight: 600;
    transition: 0.2s;
}

.card:hover .button {
    background: #1d4ed8;
}

/* ===========================
   Forms
=========================== */

.form-container {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);

    max-width: 900px;
    margin: auto;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

input[type="text"],
textarea {

    width: 100%;

    padding: 14px;

    border: 1px solid #d1d5db;

    border-radius: 8px;

    font-size: 15px;

    margin-bottom: 20px;
}

textarea {
    resize: vertical;
    min-height: 250px;
}

button {

    background: #2563eb;

    color: white;

    border: none;

    padding: 14px 26px;

    border-radius: 8px;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: .2s;
}

button:hover {
    background: #1d4ed8;
}