body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.contact-container {
    background-color: #fff;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 80px; /* Pushes it down nicely from the navbar */
    width: 90%;
    max-width: 600px;
}

.contact-container h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    margin-left: 20px;
    margin-right: 20px;
}

.contact-container p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin: 15px 0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* space between icon and text */
}

.contact-container a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin: 15px 0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* space between icon and text */
}

.contact-container i {
    color: #2196F3;
    font-size: 2rem;
}

.contact-container a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        padding: 0; /* Remove side and top padding so banner goes edge-to-edge */
        padding-bottom: 20px; /* Safe space at the bottom */
    }

    .navbar {
        padding: 3px 10px;
    }

    .site-name {
        display: none;
    }

    .home {
        display: block;
    }

    .contact-container {
        padding: 20px 30px;
        margin-top: 40px; /* Slightly smaller top gap for mobile */
    }
}

@media (max-width: 560px) {
    .contact-container {
      padding: 15px 20px;
      max-width: 400px;
    }

    .contact-container h1 {
      font-size: 1.5rem;
    }

    .contact-container a {
      font-size: 1.2rem;
    }

    .contact-container p {
      font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .navbar {
        padding: 3px 5px;
    }

    .contact-container {
      padding: 15px 10px;
      max-width: 400px;
    }

    .contact-container h1 {
      font-size: 1.3rem;
    }

    .contact-container a {
      font-size: 1.1rem;
    }

    .contact-container p {
      font-size: 1.1rem;
    }
}
