/* testimonial.css */

* {
    box-sizing: border-box;
}

/* Center the main heading and tagline */
main h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 5px;
}

.tagline {
    font-size: 1em;
    color: #555;
    text-align: center;
    margin-top: 0;
}

body, html {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
}

.about-page {
    background-color: #ffffff;
	min-height: 100vh; /* Ensure the page height expands based on content */
}

.about-container {
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    text-align: left;
	 min-height: 100vh; /* Ensure the page height expands based on content */
}

/* Our Services Section */
.about-page h3 {
    font-weight: bold;
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .about-container {
    }
    .about {
        font-size: 0.9rem;
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px; /* Add space between buttons and image below */
}

.cta-button {
    padding: 6px 12px; /* Reduced padding for smaller height */
    background-color: #ff0000; /* Bright, contrasting red */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    width: 100%; /* Full width on mobile */
    line-height: 1.2; /* Adjusts vertical text spacing */
    font-size: 14px; /* Optionally reduce font size for a more compact button */
}

.cta-button:hover {
    background-color: #cc0000; /* Slightly darker red for hover effect */
}

/* Responsive Layout for CTA Buttons */
@media (min-width: 600px) {
    .cta-button {
        width: auto; /* Default to side-by-side layout on larger screens */
    }
}

/* USPs List */
.usp-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.usp-list li {
    padding: 10px;
    background-color: #f5f5f5;
    border-left: 5px solid #ff0000; /* Highlight color matches button */
    font-weight: bold;
}

/* Section titles inside About page */
.section-title {
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Our Story block */
.about-story {
    margin-top: 10px;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
    line-height: 1.6;
}

/* Paragraph spacing inside Our Story */
.about-story p {
    margin: 0 0 10px;
}

/* Slightly tighter on mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.3rem;
    }
    .about-story {
        padding: 12px 15px;
    }
}
