body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom right, #e3f2fd, #f4f4f9); /* Background gradient */
    overflow-x: hidden;
}

header {
    background-color: #4a90e2;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    background: url('images/hero-image.jpg') no-repeat center center/cover; /* Placeholder for hero image */
    opacity: 0.2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
}

header h1, header p {
    position: relative;
    z-index: 2;
}

header h1 {
    margin: 0;
    font-size: 3rem;
}

header p {
    margin: 0.5rem 0 0;
    font-size: 1.3rem;
    font-weight: 300;
}

main {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease; /* Hover effect for sections */
}

section:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

h2 {
    font-size: 2rem;
    color: #4a90e2;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 500;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 1rem;
}

ul li {
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-links a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease; /* Hover effect for links */
    font-size: 1.1rem;
}

.contact-links a:hover {
    color: #4a90e2;
    transform: translateX(5px); /* Slight movement on hover */
}

.contact-links a img {
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

footer {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #333;
    color: #fff;
    margin-top: 3rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

@media (max-width: 600px) {
    main {
        padding: 2rem 1rem;
    }

    section {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    ul li {
        margin-bottom: 0.8rem;
    }

    .contact-links {
        gap: 10px;
    }
}

@media (min-width: 600px) {
    .contact-links {
        flex-direction: row;
        justify-content: space-between;
    }
}
