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;
}
.navbar {
    overflow: hidden;
    background-color: #333;
}
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
.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;
}
.card-section {
    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 */
    padding: 20px;
    margin: 20px 0;
}
.card {
    background: white;
    border-radius: 10px; /* More rounded corners */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    padding: 20px;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}
.card.visible {
    opacity: 1;
    transform: translateY(0);
}
.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;
    }
}
.tagline {
    font-size: 1.2em;
    color: #ecf0f1; /* Light grey text */
    margin-top: 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;
}
.background-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    opacity: 0.5;
}
.image-section {
    text-align: center;
    margin: 20px 0;
}
.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}
.hero-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/public/media/hero.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}
.hero-image::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}
.footer {
    text-align: center;
    padding: 10px;
    background-color: #2c3e50; /* Dark blue */
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}
.footer a {
    color: white;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}
.footer a:hover {
    color: #2980b9; /* Blue */
}
.fa {
    padding: 20px;
    font-size: 18px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 4px 3px;
}
.fa-facebook {
    background: #3B5998;
    color: white;
}
.fa:hover {
    opacity: 0.7;
}
