body.aboutbody {
    font-family: 'Times New Roman', serif;
    margin: 0;
}

.container-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Styles specific to the about.html page */
.about-intro {
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
}

.about-intro h2 {
    color: #2e7d32;
    /* Dark green */
    font-size: 2.5em;
    margin-bottom: 15px;
}

.about-intro p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.our-story {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.our-story h3 {
    color: #2e7d32;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.owner-image-placeholder {
    border-radius: 50%;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 2px solid #ccc;
    flex-shrink: 0;
    /* Prevent image from shrinking too much */
}

.owner-image-placeholder img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.8;
}

.our-mission {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    text-align: center;
}

.our-mission h3 {
    color: #2e7d32;
    font-size: 2em;
    margin-bottom: 20px;
}

.our-mission p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us {
    padding: 40px 0;
    text-align: center;
}

.why-choose-us h3 {
    color: #2e7d32;
    font-size: 2em;
    margin-bottom: 20px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.why-choose-us ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f4f4f4;
    font-size: 1.1em;
    color: #333;
}

.why-choose-us ul li strong {
    color: #2e7d32;
}

.why-choose-us ul li:last-child {
    border-bottom: none;
}

/* Styles specific to the about.html page */
/* ... (previous styles remain the same) ... */
.services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.services-section h3 {
    color: #0288d1;
    /* Blue - to differentiate from other headings */
    font-size: 2em;
    margin-bottom: 20px;
}

.services-section p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.services-section .service-detail {
    background-color: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-section .service-detail h4 {
    color: #2e7d32;
    /* Dark green */
    font-size: 1.5em;
    margin-bottom: 10px;
}

.services-section .service-detail ul {
    list-style: disc;
    padding-left: 20px;
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
}

.services-section .service-detail ul li {
    margin-bottom: 5px;
}

/* Style for the unique aspects within the services section */
#unique-aspects-about {
    background-color: #e0f7fa;
    /* Light blue-green */
    padding: 30px;
    border-radius: 5px;
    margin-top: 20px;
}

#unique-aspects-about h4 {
    color: #0288d1;
    /* Blue */
}

#unique-aspects-about ul {
    list-style: disc;
    padding-left: 20px;
}

.benefits-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.benefits-section h3 {
    color: #2e7d32;
    /* Dark green */
    font-size: 2em;
    margin-bottom: 20px;
}

.benefits-section p {
    color: #555;
    font-size: 1.1em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.benefits-section ul {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.benefits-section ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
}

.benefits-section ul li:last-child {
    border-bottom: none;
}

/* Layout for About Page with Sidebar */
.about-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* Sidebar Styles */
.about-sidebar {
    flex: 1 1 200px;
    max-width: 250px;
    padding: 20px;
    background-color: #f2f2f2;
    border-radius: 10px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* ✅ Improved Sidebar Navigation List */
.about-sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-sidebar nav ul li {
    width: 100%;
}

.about-sidebar nav ul li a {
    display: block;
    text-decoration: none;
    color: #2e7d32;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about-sidebar nav ul li a:hover {
    background-color: #e0f2f1;
    color: #0288d1;
}

/* Main Content Area */
.about-content {
    flex: 3 1 700px;
    min-width: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

#backToTopBtn {
    display: none;
    /* Hide the button by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #B3003E;
    /* Button background color */
    color: #fff;
    /* Text color */
    border: none;
    border-radius: 5px;
    padding: 6px 6px;
    cursor: pointer;
  }
  
  #backToTopBtn:hover {
    background-color: #808000;
    /* Hover background color */
  }


/* Responsive adjustments for the story section */
@media (max-width: 768px) {
    .story-content {
        flex-direction: column;
        text-align: center;
    }

    .owner-image-placeholder {
        margin-bottom: 20px;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
    }

    .about-sidebar {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-content {
        width: 100%;
    }
}