body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.hero {
    background-color: #2C3E50;
    color: white;
    text-align: center;
    padding: 100px 20px;
}
.hero h1 {
    font-size: 48px;
    margin: 0;
}
.hero p {
    font-size: 20px;
    margin: 20px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    margin-top: 30px;
}
.cta-buttons a {
    background-color: #E74C3C;
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.cta-buttons a:hover {
    background-color: #C0392B;
}
.section {
    padding: 50px 20px;
    background-color: #ECF0F1;
    text-align: center;
}
.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
    padding: 20px;
    text-align: left;
}
.card h3 {
    font-size: 24px;
    margin-top: 0;
    padding-bottom: 15px;
}
.card p {
    font-size: 16px;
    line-height: 1.5;
    color: #7f8c8d;
}
.tagline {
    margin-top: 40px;
    font-size: 24px;
    color: #2C3E50;
}

.bg-why-choose {
    background-color: #f6edff;
}

.bg-team {
    background-color: #a9cce3;
}

.bg-discover {
    background-color: #f9e79f;
}

.bg-about {
    background-color: #f6edff;
}

.team-bullet-list {
    list-style: none;
    padding-left: 0;
}
.team-bullet-list li::before {
    content: "-";
    padding-right: 8px;
}