body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0; /* Light grey background */
    color: #333; /* Dark text color */
    font-size: 17px; /* Adjust font size */
}
.header {
    background-color: #2c3e50; /* Dark blue */
    color: white;
    padding: 20px;
    text-align: center;
}
.content {
    margin: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7); /* More transparent background */
    border-radius: 10px; /* More rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    transition: background 0.5s;
    position: relative;
    overflow: hidden;
}
.content:hover {
    background: rgba(255, 255, 255, 0.9); /* Less transparent on hover */
}
.content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}
.contact-info {
    margin: 20px 0;
}
.btn-social {
    margin: 0 5px;
    font-size: 18px;
}
@media (max-width: 600px) {
    .content {
        margin: 10px;
        padding: 10px;
    }
    .header {
        padding: 10px;
    }
}
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #2980b9; /* Blue */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #1f6391;
}
.fa-facebook {
    background: #3B5998;
    color: white;
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}
.fa:hover {
    opacity: 0.7;
}
