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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

header p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    background: #ffb703;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: #ffa500;
}

section {
    padding: 80px 0;
}

.light-bg {
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    color: #2c5364;
}

.services {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.card {
    flex: 1 1 250px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 15px;
    color: #023047;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

input, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-family: inherit;
}

button {
    padding: 12px;
    border: none;
    background: #2c5364;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #1f3c4a;
}

footer {
    text-align: center;
    padding: 25px;
    background: #023047;
    color: white;
}
