.title-container {
    text-align: center;
    margin-top: 40px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(79, 177, 230, 0.7), 0 0 10px rgba(255, 255, 255, 0.3);
}

.main-title span {
    color: #4fb1e6;
    text-shadow: 0 0 25px rgba(79, 177, 230, 0.8);
}

.sub-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.description {
    font-size: 1.2rem;
    color: #ffffff !important; /* Ensures text is fully white */
    opacity: 1; /* Removes any transparency */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 5px rgba(255, 255, 255, 0.4); /* Adds a strong glow effect */
    line-height: 1.6;
    max-width: 800px;
    margin: 10px auto;
}

.banner-header {
    margin-bottom: 0 !important; /* Removes bottom space */
    padding-bottom: 20px; /* Adjust padding to minimize gap */
}

.post {
    margin-top: 0 !important; /* Removes top space */
    padding-top: 0 !important; /* Ensures sections align smoothly */
}












/* General Section Styling */
.post.section-padding {
    padding: 60px 0;
    background: #121212;
}

/* Image Container */
.image-container img {
    width: 100%; /* Ensures the image fills the container */
    height: auto;
    max-height: 500px; /* Keeps proportions clean */
    object-fit: cover; /* Ensures a balanced crop */
    border-radius: 12px;
}



.text-container {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.1);
    text-align: center;
    max-width: 90%;
    margin: auto;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hellblau {
    color: #4fb1e6; /* Your website's Hellblau color */
}

.description {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    line-height: 1.6;
    max-width: 800px;
    margin: 10px auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #4fb1e6, #00c6ff);
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-button:hover {
    background: #4fb1e6;
    box-shadow: 0px 5px 15px rgba(79, 177, 230, 0.5);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-container {
        text-align: center;
        padding: 20px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
    }
}







/* General Section Padding */
.post.section-padding {
    padding: 60px 0;
}

/* Shadow Box for Comment & Form */
.shadow-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Comment Box Styling */
.comment-box {
    color: #fff;
    padding: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Company Name Styling */
.company-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #4fb1e6; /* Hellblau color */
}

.date {
    font-size: 1rem;
    color: #ccc;
}

/* Form Box Styling */
.form-box {
    padding: 30px;
    text-align: center;
}

/* Form Title */
.form-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.form-title span {
    color: #4fb1e6;
}

/* Form Inputs */
.form-box input, .form-box textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 1rem;
}

.form-box input::placeholder, .form-box textarea::placeholder {
    color: #ccc;
}

/* Button Styling */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(to right, #4fb1e6, #00c6ff);
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    background: #4fb1e6;
    box-shadow: 0 5px 20px rgba(79, 177, 230, 0.5);
}
