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

body {
    background-color: #f8f9fa;
}

.navbar {
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
}

.logo {
    height: 60px;
    width: auto;
}

/* Hero section for the home page */
.hero {
    min-height: 80vh;
    width: 100%;
    background:
        linear-gradient(
            rgba(0,0,0,.6),
            rgba(0,0,0,.6)
        ),
        url("../images/hero.png");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-content {
    width: 60%;
    height: 400px;
    margin-left: 100px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
}

.hero-content {
    padding-top: 2rem;
}

.hero h1,
.hero p {
    text-shadow: 2px 2px 8px rgba(0,0,0,.8);
}

/* message-container style */
.messages-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    width: 350px;
}

/* Trusted features section */
.trust-section {
    background-color: #f8f9fa;
}

.trust-card {
    background: white;
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #555;
}

/* How it works section */
.how-it-works {
    background-color: #a9a4a4;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.step-card {
    padding: 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #ffc107;
    color: #000;

    font-size: 2rem;
    font-weight: 700;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Review section */
.reviews-section {
    background-color: #f8f9fa;
    min-height: 50vh;
    align-items: center;
    display: flex;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #ffc107;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #555;
    font-style: italic;
}

.review-card h5 {
    margin-bottom: 0;
    font-weight: 700;
}

.review-card span {
    color: #777;
    font-size: 0.9rem;
}

/* call to action section */
.cta-section {
    background-color: #212529;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section .btn {
    min-width: 180px;
}

/* Media query for mobile phones */
@media (max-width: 768px) {
    .hero {
        min-height: 94vh;
    }

    .hero-content {
        margin-left: 50px;
    }
}