body {
    background-color: #ffe5ff;
    margin: 0;
    font-family: Arial, sans-serif;
}

#main {
    margin: 0 auto;
    max-width: 1100px;
    padding-top: 70px;
}

.navbar {
    background-color: #423e3b;
    border-radius: 0;
    width: 100%;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar .navbar-nav {
    width: 100%;
    justify-content: center;
}

.navbar .nav-link {
    color: white;
}

.navbar .nav-link:hover {
    color: #ffe5ff;
}

.video-container {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    opacity: 0.5;
}

.video-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px #000;
    text-align: center;
}

footer {
    background-color: #423e3b;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
}

.content-section {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #fff2ff;
}

.quote-bubble {
    position: relative;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-style: italic;
    color: #333;
}

.quote-bubble::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.quote-bubble h2 {
    margin: 0;
}

.breadcrumb {
    background-color: transparent;
    padding-left: 0;
}

.service-hero {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card {
    background-color: #fff2ff;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-card p {
    flex-grow: 1;
}

.service-card h2 {
    font-size: 1.5rem;
}
