body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

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

.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

.content-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

.text-container {
    max-width: 600px;
    margin: 10px;
}

.text-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.text-container .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.text-container .logo-container img {
    height: 50px;
    margin-right: 10px;
}

.text-container .highlight {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.text-container .grey-text {
    font-size: 16px;
    color: #666;
}

.social-image-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.social-image-container img {
    width: 50px;
    height: 50px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-image-container img:hover {
    transform: scale(1.2);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 0 10px;
}

.footer-section h3 {
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section ul li a i {
    margin-right: 5px;
}