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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    background: white;
}

header {
    height: 90px;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 170px;
}

nav a {
    margin-left: 35px;
    text-decoration: none;
    color: #2d1164;
    font-weight: 500;
}

.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 60px;
    max-width: 900px;
    margin: auto;
}

.hero p {
    margin: 30px auto;
    max-width: 600px;
    font-size: 20px;
    line-height: 1.6;
}

button {
    padding: 15px 40px;
    background: white;
    border: 2px solid #2d1164;
    color: #2d1164;
    letter-spacing: 2px;
    font-weight: bold;
}

.services {
    background: #f5f5f5;
    padding: 80px 10%;
}

.cards {
    display: flex;
    gap: 50px;
}

.card {
    flex: 1;
}

.card h3 {
    color: #2d1164;
    font-size: 36px;
    margin-bottom: 20px;
}

.card p {
    line-height: 1.5;
}
.services h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.service-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
}

.card ul {
    list-style: none;
}

.card li {
    margin-bottom: 14px;
    font-size: 17px;
}

.card li::before {
    content: "✈ ";
    color: #2d1164;
}
