body {
    font-family: "Roboto", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #d2b4de;
}

header {
    background-color: #d2b4de;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

h1 {
    margin: 0;
    font-size: 36px;
}

h1 a {
    text-decoration: none;
    color: #d2b4de;
    display: flex;
    align-items: center;
}

h1 img {
    width: 50px; /* Adjust the size of the logo */
    height: auto;
    margin-right: 10px; /* Adds some space between the logo and text */
}

/* Hero section */
#hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 200px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
}


#hero h2 {
    font-size: 48px;
    margin: 0;
}

#hero p {
    font-size: 24px;
    margin-top: 20px;
}

/* Info section (the three cards) */
.info-section {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: inherit;
}

.info-card {
    background-color: #f4ebfe;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 16px;
    margin-bottom: 20px;
}

.info-card a {
    color: #d2b4de;
    text-decoration: none;
    font-weight: bold;
}

.info-card a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: transparent;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}

header img {
    height: 50px;
    margin-right: 10px;
  }

footer {
    background-color: #d2b4de;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
  }
  