        :root {
            --primary-color: #b41111;
            --primary-color-dark: #960a0a;            
            --secondary-color: #0c0c0c;
            --accent-color: #ffffff;
            --light-color: #ffffff;
            --dark-color: #000000;
            --cstm-color: #393939;
        }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.navbar-custom {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand img {
    height: 40px;
}

.hero-section {
    background: linear-gradient(135deg, var(--light-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.testimonial-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

footer {
    background-color: var(--dark-color);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
}

.circle-image {
    width: 200px; /* Adjust size as needed */
    height: 200px; /* Ensure width and height are the same */
    border-radius: 50%; /* Creates the circular shape */
    object-fit: cover; /* Ensures the image scales correctly */
    border: 5px solid var(--primary-color-dark); /* Adds a border in your preferred pink color */
}

/* Adapted contact form styles from Website D01 for webseiteV2 */

.form-control {
    border-radius: 3px;
    font-size: 13px;
    height: auto;
    line-height: 1.33333;
    padding: 15px 15px 15px 20px;
    background: var(--light-color);
    color: var(--dark-color);
    border: 0px solid transparent;
    box-shadow: none;
    transition: all 0.5s ease-out 0s;
}

.form-control:focus {
    background: var(--light-color);
    border: 0px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    outline: none;
}

textarea.form-control {
    resize: vertical;
}

.section-field h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color-dark);
}

.form-check-label {
    padding-left: 10px;
    color: var(--dark-color);
}

.form-check-input:checked {
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.button {
    background-color: var(--primary-color-dark);
    border: none;
    color: var(--light-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

/* New styles for responsive horizontal layout of contact form fields */

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.section-field {
    margin-bottom: 1rem;
    min-width: 250px;
    box-sizing: border-box;
}

.section-field.textarea {
    flex: 1 1 100%;
}

#contact-us {
    background-color: var(--contact-bg-color) !important;
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-form > .d-flex {
    width: 100%;
    justify-content: center;
    align-items: center;
}

.contact-form .section-field {
    min-width: 300px;
}

.contact-form textarea.input-message {
    min-width: 100%;
    width: 100%;
    flex-grow: 1;
    margin-left: 1rem;
}

.contact-form button.button {
    max-width: 200px;
    margin-left: 1rem;
}

.contact-form .form-check {
    display: flex;
}

/* Service radio button group styles */
.btn-group[role="group"][aria-label="Service radio toggle button group"] {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group[role="group"][aria-label="Service radio toggle button group"] .btn {
    font-size: 1.25rem;
    border-width: 2.5px;
    color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.btn-group[role="group"][aria-label="Service radio toggle button group"] .btn:hover,
.btn-group[role="group"][aria-label="Service radio toggle button group"] .btn:focus,
.btn-group[role="group"][aria-label="Service radio toggle button group"] .btn.active,
.btn-group[role="group"][aria-label="Service radio toggle button group"] .btn:active,
.btn-group[role="group"][aria-label="Service radio toggle button group"] .btn-check:checked + .btn {
    color: var(--light-color);
    background-color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
}

.mehr-erfahren-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Navbar styles */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-custom .navbar-brand {
    padding: 0;
}

.navbar-logo {
    max-height: 60px;
    max-width: 60px;
    object-fit: contain;
    display: block;
}

.navbar-custom .navbar-toggler {
    border: none;
    outline: none;
    transition: transform 0.3s ease;
    filter: none;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 35, 102, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-custom .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    color: var(--primary-color-dark);
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 0.25rem;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--light-color);
    background-color: var(--primary-color-dark);
}

/* Exclude language dropdown items from active/hover background */
.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:hover,
.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item.active {
    background-color: transparent !important;
    color: var(--primary-color-dark) !important;
}

.navbar-custom .nav-item.dropdown .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
}

.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: var(--primary-color-dark);
    transition: background-color 0.3s ease;
}

.navbar-custom .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color-dark);
    color: var(--light-color);
}

/* Mobile menu collapse smooth transition */
.collapse.navbar-collapse {
    transition: max-height 0.4s ease;
    overflow: visible !important;
    max-height: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .navbar-custom .navbar-collapse {
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 0.25rem;
    }
    
    .navbar-custom .navbar-nav .nav-link {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
        color: var(--primary-color-dark);
    }
    
    .navbar-custom .navbar-nav .nav-link:hover,
    .navbar-custom .navbar-nav .nav-link.active {
        color: var(--light-color);
        background-color: var(--primary-color-dark);
    }
}
