body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f1de; /* Sandy White */
    color: #333333; /* Dark Charcoal */
    margin: 0;
    padding: 0;
}

.top-content {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #f4f1de; /* Match body background */
}

.top-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.top-content p {
    font-size: 1.2rem;
    margin-top: 0;
}

.tropical-blue {
    color: #20b2aa; /* LightSeaGreen */
}

.centered-image-placeholder {
    text-align: center;
    margin: 2rem 0;
}

.centered-image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: adds a soft border to the image */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-nav {
    background-color: #20b2aa; /* Vibrant Blue */
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.main-nav li {
    margin: 0 20px;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.main-nav a:hover {
    background-color: #fca311; /* Orange Accent */
}

main {
    padding: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.card h2 {
    color: #20b2aa;
    margin-top: 0;
}

.connect-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.connect-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.connect-steps li::before {
    content: counter(step-counter);
    background-color: #fca311;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}


footer {
    background-color: #20b2aa;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-content h1 {
        font-size: 2.5rem;
    }
    .top-content p {
        font-size: 1rem;
    }
    .main-nav ul {
        flex-direction: column;
    }
    .main-nav li {
        margin: 10px 0;
    }
}