

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    text-align: center;
    padding: 0;
    line-height: 1.6;
    background-image: url('background-image.jpg'); /* Add background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: keeps background fixed during scroll */
}

header {
    padding: 30px 0;
    background-color: rgba(30, 30, 30, 0.8); /* Semi-transparent background */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%; /* Adjust for mobile */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/*
.logo {
    max-width: 180px;
    display: block;
    margin: 0 auto;
}
*/

h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 2.5em; /* Adjust for mobile */
    color: #4fc3f7;
    margin-bottom: 20px;
    font-weight: 700;
}

p {
    font-size: 1em; /* Adjust for mobile */
    color: #bdbdbd;
    margin-bottom: 30px;
}

.cta {
    margin-top: 40px;
    font-weight: 500;
    font-size: 1.1em; /* Adjust for mobile */
}

a {
    color: #81d4fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #64b5f6;
}

footer {
    background-color: rgba(30, 30, 30, 0.8); /* Semi-transparent background */
    padding: 20px 0;
    margin-top: 60px;
    font-size: 0.9em;
    color: #9e9e9e;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text-content {
    flex: 1 1 100%; /* Full width on mobile */
    padding: 20px;
}

.image-content {
    flex: 1 1 300px; /* Adjust image width */
    padding: 20px;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .text-content {
        flex: 2 1 400px;
    }

    .image-content {
        flex: 1 1 300px;
    }

    h1 {
        font-size: 2.8em;
    }

    p, .cta {
        font-size: 1.1em;
    }
}

.logo {
    max-width: 150px; /* Adjust size as needed */
    display: block;
    margin: 0 auto;
    border-radius: 50%; /* Make it perfectly circular */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add a subtle shadow */
    transition: transform 0.3s ease; /* Add a smooth transition for hover effect */
}

.logo:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

