{% extends 'base.html.twig' %}
{% block title %}
{% if page_title is defined %}{{ page_title }}{% else %}LCAS{% endif %}
{% endblock %}
{% block body %}
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}
header {
background: #003366;
color: white;
padding: 3rem 2rem;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
header p {
font-size: 1.2rem;
margin: 0.5rem 0 1.5rem;
}
.cta {
background: #ff9933;
color: white;
padding: 0.8rem 1.6rem;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
.section {
margin-bottom: 3rem;
}
.section img {
width: 65%;
height: auto;
border-radius: 10px;
margin: 1rem 0;
display: block;
margin-left: auto;
margin-right: auto;
}
.highlight {
background: #e6f2ff;
padding: 1rem;
border-left: 4px solid #006699;
margin-bottom: 1.5rem;
}
.scroll-indicator {
position: fixed;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
background: rgba(0, 51, 102, 0.9);
color: white;
padding: 12px;
border-radius: 50%;
text-align: center;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
transition: opacity 0.3s ease;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.scroll-indicator:hover {
background: rgba(0, 51, 102, 1);
}
.scroll-arrow {
font-size: 1.5rem;
animation: bounce 2s infinite;
display: block;
margin: 0;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0);
}
40% {
transform: translateY(-8px);
}
60% {
transform: translateY(-4px);
}
}
.scroll-indicator.hidden {
opacity: 0;
pointer-events: none;
}
</style>
<header>
<h1 style="color:white !important;">Accreditation Support through LCAS</h1>
<p>Expert Guidance. Proven Results. Seamless Process.</p>
<a class="cta" href="#contact">Get in Touch</a>
</header>
<div class="container">
<div class="section">
<h2>Why Choose LCAS?</h2>
<p>LCAS offers experienced professionals and a streamlined infrastructure to support your accreditation efforts without the cost of hiring full-time staff. With over 15 years of proven success and a 100% success rate, LCAS has helped institutions shine in evaluations by CAEP, SACSCOC, and others.</p>
<img src="https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg" alt="Professional team in meeting">
</div>
<div class="section">
<h2>How It Works</h2>
<p>We tailor a standards-based accreditation framework, collect and analyze your data using our proprietary or your own instruments, and consult on reports and documents to ensure clarity and impact.</p>
<img src="https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg" alt="Data and workflow analysis">
</div>
<div class="section">
<h2>Common Accreditation Misconceptions & Mistakes</h2>
<div class="highlight">
<strong>Misconception:</strong> Accreditation is one person's job.<br/>
<strong>Truth:</strong> Accreditation requires institution-wide collaboration.
</div>
<div class="highlight">
<strong>Mistake:</strong> Hiring underqualified staff for accreditation.<br/>
<strong>Solution:</strong> Trust proven experts like LCAS.
</div>
<div class="highlight">
<strong>Misconception:</strong> Standards are flexible goals.<br/>
<strong>Truth:</strong> They're minimum expectations. Noncompliance risks program integrity.
</div>
<div class="highlight">
<strong>Mistake:</strong> Last-minute data collection.<br/>
<strong>Solution:</strong> Make accreditation part of daily practice.
</div>
<img src="https://images.pexels.com/photos/2422293/pexels-photo-2422293.jpeg" alt="Team planning together">
</div>
<div class="section">
<h2>Why It Matters</h2>
<p>Accreditation directly impacts the value of degrees, licensure, and institutional credibility. It's not optional it's essential. LCAS helps ensure your program meets and exceeds standards.</p>
</div>
<div class="section" id="contact">
<h2>Contact Us</h2>
<p>If you could reduce accreditation stress, save money, and improve your institutions outcomes why wait?</p>
<p><strong>Email:</strong> <a href="mailto:lcas_admin@sc.rr.com">lcas_admin@sc.rr.com</a></p>
<p><strong>Website:</strong> <a href="https://www.increaseachievement.com">www.lcasincreaseachievement.com</a></p>
<a class="cta" href="mailto:lcas_admin@sc.rr.com">Schedule a Free Consultation</a>
</div>
</div>
<div class="scroll-indicator" id="scrollIndicator">
<span class="scroll-arrow">↓</span>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const scrollIndicator = document.getElementById('scrollIndicator');
function checkScroll() {
const scrollPosition = window.scrollY;
const windowHeight = window.innerHeight;
const documentHeight = document.documentElement.scrollHeight;
const scrolledPercentage = (scrollPosition + windowHeight) / documentHeight;
if (scrolledPercentage > 0.85) {
scrollIndicator.classList.add('hidden');
} else {
scrollIndicator.classList.remove('hidden');
}
}
window.addEventListener('scroll', checkScroll);
checkScroll();
});
</script>
{% endblock %}