:root {
    --primary-color: #15CDCB; 
    --secondary-color: #1D1135; 
    --text-color: #1D1135; 
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --light-accent: #E0FFFF;
}

 @font-face { font-family: Louis George Cafe; src: url('Louis-George-Cafe.ttf'); } 


body {
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
}

header {
    background-color: var(--white);
    color: var(--secondary-color);
    text-align: center;
	padding-bottom: 0.5rem;
    border-bottom: 5px solid var(--primary-color);
}

.logo {
    max-width: 160px; /* Scaled down logo */
    height: auto;
    margin-bottom: 0.5rem;
}

/* Menu Bar */
.top-nav {
    background-color: var(--light-accent);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding: 1rem 0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.top-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: var(--primary-color);
}

header h1 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    color: var(--secondary-color);
    padding: 0 2rem;
}

header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
}

h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--bg-color);
    padding-bottom: 0.5rem;
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-us-list {
    grid-template-columns: 1fr; 
}

@media (max-width: 600px) {
    ul {
        grid-template-columns: 1fr; 
    }
}

ul li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

ul li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

ul li strong {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.why-us-list li strong {
    display: inline;
}

.contact-info {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: bold;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* About Page Specific Layout */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .about-image {
        max-width: 40%;
    }
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    background-color: var(--white);
    color: var(--secondary-color);
    border-top: 5px solid var(--primary-color);
}