/* General Body & Typography */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #f8fbfd;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #0a3d62;
    margin-bottom: 0.8em;
}

h1 { font-size: 3.5em; margin-bottom: 0.5em; }
h2 { font-size: 2.5em; text-align: center; margin-bottom: 1.5em; }
h3 { font-size: 1.8em; margin-bottom: 0.5em; }

p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #38ada9;
    color: white;
    border: 2px solid #38ada9;
}

.btn-primary:hover {
    background: #2b8e8b;
    border-color: #2b8e8b;
    transform: translateY(-2px);
}

/* Header */
.main-header {
    background: #0a3d62;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 700;
}

.main-nav .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav .nav-links li {
    margin-left: 30px;
}

.main-nav .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.main-nav .nav-links a:hover {
    color: #f8c291;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: white;
    font-size: 1.8em;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a3d62 0%, #38ada9 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh; /* Make it take up more vertical space */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://unsplash.com/photos/a-washing-machine-is-inside-of-a-laundry-room-uH_Yh_7j6-o') no-repeat center center/cover; /* Placeholder image, replace with your own */
    opacity: 0.2; /* Subtle background image */
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4em;
    margin-bottom: 0.2em;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Us Section */
/* About Us Section - Redesign Specifics */
.about-us {
    padding: 100px 0; /* More padding for spacious feel */
    background: #ffffff;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 3.2em; /* Slightly larger title */
    color: #0a3d62;
    margin-bottom: 15px;
}

.about-header .subtitle {
    font-size: 1.3em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.about-content-flex {
    display: flex;
    align-items: center;
    gap: 50px; /* Space between text and image */
    margin-bottom: 80px; /* Space before values grid */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.about-text {
    flex: 2; /* Takes more space than image */
    max-width: 700px;
}

.about-text p {
    font-size: 1.15em;
    line-height: 1.7;
    margin-bottom: 1.2em;
    color: #444;
}

.about-text p strong {
    color: #0a3d62;
    font-weight: 700;
}

.about-image {
    flex: 1; /* Takes less space */
    min-width: 300px; /* Ensures image isn't too small */
    text-align: center;
}

.about-image .responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* More pronounced shadow */
    transition: transform 0.3s ease;
}

.about-image .responsive-img:hover {
    transform: translateY(-5px);
}

/* New Values Grid Styling */
.values-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-top: 40px; /* Space from content above */
    border-top: 1px solid #eee; /* Subtle separator */
}

.value-item-new {
    background: #f0f8ff; /* Lighter background for value items */
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-item-new:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    background: #e6f3ff; /* Slightly darker on hover */
}

.value-item-new .icon-circle {
    background: #38ada9; /* Teal background for icon */
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.value-item-new h3 {
    color: #0a3d62;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.6em;
}

.value-item-new p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Responsive Adjustments for About Us */
@media (max-width: 992px) {
    .about-content-flex {
        flex-direction: column; /* Stack image and text on medium screens */
        text-align: center;
    }
    .about-text, .about-image {
        flex: none; /* Remove flex sizing */
        width: 100%; /* Take full width */
        max-width: 100%;
    }
    .about-image {
        order: -1; /* Move image above text on mobile */
        margin-bottom: 30px;
    }
    .about-header h2 {
        font-size: 2.8em;
    }
    .about-header .subtitle {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }
    .about-header h2 {
        font-size: 2.2em;
    }
    .about-header .subtitle {
        font-size: 1em;
    }
    .values-grid-new {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 1.8em;
    }
    .value-item-new {
        padding: 25px;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.value-item {
    background: #f0f8ff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.value-item h3 {
    color: #0a3d62;
    margin-top: 15px;
    font-size: 1.5em;
}

.value-item i {
    font-size: 3em;
    color: #38ada9;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #eef7fc;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-item h3 {
    color: #0a3d62;
    margin-top: 15px;
    font-size: 1.5em;
}

.service-item .service-icon {
    font-size: 3.5em;
    color: #38ada9;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #38ada9;
}

.testimonial-message {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-name {
    font-weight: 600;
    color: #0a3d62;
    font-size: 1.1em;
}

/* Footer */
.main-footer {
    background: #0a3d62;
    color: white;
    padding: 50px 0 20px;
    font-size: 0.95em;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #f8c291;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f8c291;
}

.footer-section.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-section.contact-info p i {
    margin-right: 10px;
    color: #38ada9;
    font-size: 1.1em;
    padding-top: 3px; /* Align icon better */
}

.footer-section.social a {
    color: white;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-section.social a:hover {
    color: #f8c291;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2em;
    }

    h2 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .main-nav .nav-links {
        display: none; /* Hide by default */
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .main-nav .nav-links.active {
        display: flex; /* Show when active */
    }

    .main-nav .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block; /* Show menu icon */
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .hero {
        padding: 80px 20px;
        min-height: 50vh;
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.3em;
    }

    .about-us, .services, .testimonials {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section.contact-info p {
        justify-content: center;
    }

    .footer-section.social {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .testimonial-grid, .service-grid, .values-grid {
        grid-template-columns: 1fr;
    }
}
/* Page Specific Hero Sections (e.g., for Services, Contact, etc.) */
.page-hero {
    background: linear-gradient(135deg, #0a3d62 0%, #38ada9 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a services-specific background image */
    background: url('https://unsplash.com/photos/a-close-up-of-some-freshly-washed-laundry-G5Bf-s-uJPs') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5em;
    margin-bottom: 0.2em;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.5em;
    margin-top: 0;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styles for Service Page */
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}

/* Service Categories Section */
.service-categories {
    padding: 80px 0;
    background: #f8fbfd;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.category-icon {
    font-size: 4em;
    color: #38ada9;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.8em;
    color: #0a3d62;
    margin-bottom: 15px;
}

.category-card p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
}

/* Price List Section */
.price-list-section {
    padding: 80px 0;
    background: #eef7fc; /* Lighter background for contrast */
}

.price-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden; /* Ensures rounded corners apply to content */
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1em;
}

.price-table th, .price-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.price-table th {
    background: #0a3d62;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1em;
}

.price-table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #e6f3ff; /* Highlight on hover */
    transition: background-color 0.2s ease;
}

.no-data-message {
    text-align: center;
    padding: 40px;
    font-size: 1.2em;
    color: #888;
}

/* Additional Services Section (reusing .service-grid and .service-item from index) */
.additional-services {
    padding: 80px 0;
    background: #f8fbfd;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(90deg, #38ada9, #0a3d62);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.cta-banner h2 {
    color: white;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.cta-banner .btn-primary {
    background: white;
    color: #0a3d62;
    border: none;
    padding: 15px 35px;
    font-size: 1.2em;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-banner .btn-primary:hover {
    background: #e0e0e0;
    color: #0a3d62;
    transform: translateY(-3px);
}

/* Responsive adjustments for Services page */
@media (max-width: 992px) {
    .page-title {
        font-size: 3em;
    }
    .page-subtitle {
        font-size: 1.3em;
    }
    .category-grid, .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
        min-height: 35vh;
    }
    .page-title {
        font-size: 2.5em;
    }
    .page-subtitle {
        font-size: 1.1em;
    }
    .service-categories, .price-list-section, .additional-services, .cta-banner {
        padding: 60px 0;
    }
    .section-description {
        margin-bottom: 30px;
        font-size: 1em;
    }
    .price-table th, .price-table td {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    .cta-banner h2 {
        font-size: 2.2em;
    }
    .cta-banner p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2em;
    }
    .category-grid, .service-grid {
        grid-template-columns: 1fr;
    }
    .price-table th, .price-table td {
        font-size: 0.9em;
    }
}

/* Blog Page Specific Hero */
.blog-hero {
    background: linear-gradient(135deg, #0a3d62 0%, #38ada9 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a blog-specific background image */
    background: url('https://unsplash.com/photos/a-close-up-shot-of-the-texture-of-paper-t-d_W4BwDk') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

/* Blog Content Section */
.blog-content {
    padding: 80px 0;
    background: #f8fbfd;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px; /* More space between cards */
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden; /* Ensures image corners are rounded */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.post-image-container {
    width: 100%;
    height: 220px; /* Fixed height for consistent image size */
    overflow: hidden;
    position: relative;
}

.post-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    transition: transform 0.4s ease;
}

.blog-post-card:hover .post-featured-image {
    transform: scale(1.05); /* Slight zoom on image hover */
}

.post-featured-image.placeholder-img {
    background-color: #e0e0e0; /* Gray background for placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #888;
    text-align: center;
    /* Optional: Add text like "No Image" if you want */
}

.post-content-wrapper {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows content to take up remaining space */
}

.post-title {
    font-size: 1.8em;
    color: #0a3d62;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
}

.post-excerpt {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allows excerpt to push button to bottom */
}

.read-more-btn {
    display: inline-flex; /* Use flex to align text and icon */
    align-items: center;
    color: #38ada9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto; /* Pushes button to the bottom of the card */
}

.read-more-btn:hover {
    color: #0a3d62;
}

.read-more-btn i {
    margin-left: 8px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

.no-posts-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 40px auto;
}

.no-posts-message p {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 30px;
}

/* Responsive Adjustments for Blog Page */
@media (max-width: 992px) {
    .page-title {
        font-size: 3em;
    }
    .page-subtitle {
        font-size: 1.3em;
    }
    .blog-grid {
        gap: 30px;
    }
    .post-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
        min-height: 35vh;
    }
    .page-title {
        font-size: 2.5em;
    }
    .page-subtitle {
        font-size: 1.1em;
    }
    .blog-content {
        padding: 60px 0;
    }
    .blog-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
    .blog-post-card {
        flex-direction: row; /* Horizontal layout for posts on small screens */
        text-align: left;
    }
    .post-image-container {
        width: 40%; /* Image takes 40% of width */
        height: auto; /* Adjust height based on content */
        min-width: 120px;
        max-width: 180px;
    }
    .post-content-wrapper {
        padding: 20px;
    }
    .post-title {
        font-size: 1.4em;
    }
    .post-excerpt {
        font-size: 0.95em;
    }
    .no-posts-message {
        padding: 40px 15px;
    }
    .no-posts-message p {
        font-size: 1.1em;
    }
}

@media (max-width: 576px) { /* Even smaller screens */
    .blog-post-card {
        flex-direction: column; /* Stack vertically again if very small */
        text-align: center;
    }
    .post-image-container {
        width: 100%;
        height: 200px; /* Fixed height for image again */
        max-width: none;
    }
    .post-content-wrapper {
        padding: 25px;
    }
    .read-more-btn {
        margin: 0 auto; /* Center button if stacked */
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2em;
    }
}
/* Page Specific Hero Sections */
.about-hero {
    background: linear-gradient(135deg, #0a3d62 0%, #38ada9 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use an about-us specific background image */
    background: url('https://unsplash.com/photos/top-view-photo-of-assorted-color-clothes-R2rN_D3eN6k') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

/* About Content Full Sections */
.about-content-full {
    padding: 80px 0;
    background: #f8fbfd; /* Light background */
}

.about-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px; /* Space between sections */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.about-section:last-of-type {
    margin-bottom: 0; /* No margin after the last section */
}

.about-section.introduction .text-block p,
.about-section.mission-values .text-block p {
    font-size: 1.15em;
    line-height: 1.7;
    color: #444;
}

.about-section h2 {
    font-size: 2.5em;
    color: #0a3d62;
    margin-bottom: 25px;
    text-align: left; /* Default text alignment */
}

.about-section .text-block {
    flex: 2; /* Text takes more space */
    max-width: 700px;
}

.about-section .image-block {
    flex: 1; /* Image takes less space */
    min-width: 300px;
    text-align: center;
}

.about-section .responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-section .responsive-img:hover {
    transform: translateY(-5px);
}

/* Reverse order for alternating layout */
.about-section .image-block.reverse-order {
    order: 2; /* Puts image on the right */
}

.about-section .text-block.reverse-order {
    order: 1; /* Puts text on the left */
}

/* Specific styling for Mission & Values within about-section */
.mission-values .values-list {
    display: grid;
    grid-template-columns: 1fr; /* Stack on one column */
    gap: 20px;
    margin-top: 30px;
}

.mission-values .value-item-new {
    display: flex;
    align-items: flex-start; /* Align icon and text at top */
    gap: 20px;
    background: #eef7fc; /* Lighter background for value items */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.mission-values .value-item-new .icon-circle {
    background: #38ada9;
    color: white;
    min-width: 50px; /* Fixed width for consistent circle size */
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 5px; /* Adjust vertical alignment if needed */
}

.mission-values .value-item-new h3 {
    font-size: 1.4em;
    margin-bottom: 5px;
}

.mission-values .value-item-new p {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 0;
}

.value-circle-callout {
    background: #f8c291; /* Accent color */
    color: #0a3d62;
    padding: 25px;
    border-radius: 50%;
    width: 150px; /* Fixed size for circle */
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 40px auto 0 auto; /* Center it below values */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
}

.value-circle-callout i {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.value-circle-callout h4 {
    font-size: 1.3em;
    margin: 0;
    line-height: 1.2;
}

.value-circle-callout p {
    font-size: 0.9em;
    margin: 5px 0 0 0;
    color: #333;
}


/* Team Commitment Section */
.team-commitment .team-content {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}
.team-commitment .team-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5em;
}

/* Call to Action Section (specific to About page) */
.cta-section-about {
    background: #0a3d62;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section-about h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section-about p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

.cta-section-about .btn {
    margin: 0 15px;
    padding: 12px 30px;
    font-size: 1.1em;
}

.cta-section-about .btn-primary {
    background: #38ada9;
    border-color: #38ada9;
}

.cta-section-about .btn-primary:hover {
    background: #2b8e8b;
    border-color: #2b8e8b;
}

.cta-section-about .btn-secondary {
    background: none;
    border: 2px solid white;
    color: white;
}

.cta-section-about .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}


/* Responsive Adjustments for About Page */
@media (max-width: 992px) {
    .page-title {
        font-size: 3em;
    }
    .page-subtitle {
        font-size: 1.3em;
    }
    .about-section {
        flex-direction: column; /* Stack sections vertically */
        text-align: center;
        margin-bottom: 60px;
    }
    .about-section .text-block,
    .about-section .image-block {
        flex: none; /* Remove flex sizing */
        width: 100%;
        max-width: 100%;
    }
    .about-section .image-block.reverse-order {
        order: unset; /* Reset order for stacking */
    }
    .about-section h2 {
        text-align: center;
    }
    .mission-values .values-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 2 columns on medium screens */
    }
    .value-circle-callout {
        margin-top: 20px;
    }
    .cta-section-about h2 {
        font-size: 2.2em;
    }
    .cta-section-about p {
        font-size: 1.1em;
    }
    .cta-section-about .btn {
        margin: 10px 5px; /* Adjust button margin for stacking */
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
        min-height: 35vh;
    }
    .page-title {
        font-size: 2.5em;
    }
    .page-subtitle {
        font-size: 1.1em;
    }
    .about-content-full {
        padding: 60px 0;
    }
    .about-section {
        margin-bottom: 40px;
    }
    .about-section h2 {
        font-size: 2em;
    }
    .mission-values .values-list {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
    .cta-section-about h2 {
        font-size: 2em;
    }
    .cta-section-about p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2em;
    }
    .about-section .text-block p {
        font-size: 1em;
    }
    .cta-section-about .btn {
        display: block; /* Stack buttons vertically */
        width: 90%;
        margin: 10px auto;
    }
}
/* Page Specific Hero Sections */
.contact-hero {
    background: linear-gradient(135deg, #0a3d62 0%, #38ada9 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Use a contact-specific background image */
    background: url('https://unsplash.com/photos/a-stack-of-white-towels-with-a-flower-on-top-k6iK8kS1Kj8') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8fbfd; /* Light background */
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 3.5em;
    color: #38ada9;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.8em;
    color: #0a3d62;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1.05em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card a {
    color: #38ada9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto; /* Push links to bottom of card */
}

.contact-card a:hover {
    color: #0a3d62;
    text-decoration: underline;
}

.contact-number, .contact-email {
    font-size: 1.2em;
    font-weight: 700;
    color: #0a3d62;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #eef7fc; /* Lighter background for contrast */
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 1.1em;
    color: #0a3d62;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Include padding in width */
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #38ada9;
    box-shadow: 0 0 0 3px rgba(56, 173, 169, 0.2);
    outline: none;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 120px;
}

.submit-btn {
    width: auto;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    background: #0a3d62;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #1a527f;
    transform: translateY(-2px);
}

/* Success Message Styling */
.success-message {
    background-color: #d4edda; /* Light green */
    color: #155724; /* Dark green text */
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.5s ease-out;
}

.success-message i {
    font-size: 1.8em;
    color: #28a745; /* Green icon */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Responsive adjustments for Contact page */
@media (max-width: 992px) {
    .page-title {
        font-size: 3em;
    }
    .page-subtitle {
        font-size: 1.3em;
    }
    .contact-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 20px;
        min-height: 35vh;
    }
    .page-title {
        font-size: 2.5em;
    }
    .page-subtitle {
        font-size: 1.1em;
    }
    .contact-info-section, .contact-form-section {
        padding: 60px 0;
    }
    .section-description {
        margin-bottom: 30px;
        font-size: 1em;
    }
    .contact-details-grid {
        grid-template-columns: 1fr; /* Single column on small screens */
    }
    .contact-form {
        padding: 30px;
    }
    .form-group label {
        font-size: 1em;
    }
    .form-group input, .form-group textarea {
        padding: 12px;
        font-size: 0.95em;
    }
    .submit-btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .success-message {
        font-size: 1em;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2em;
    }
}