/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #FDF6E3;
    --navy: #1C3144;
    --navy-light: #2a4a5f;
    --accent: #d4a574;
    --text-dark: #2c2c2c;
    --text-light: #f5f5f5;
    --border-light: rgba(28, 49, 68, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--navy);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--navy-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--navy);
    color: var(--cream);
    border-color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--cream);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--cream);
}

.btn-large {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--cream);
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.company-name {
    color: var(--cream);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--cream);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: var(--cream);
    color: var(--navy);
    border-color: var(--cream);
}

.hero .btn-primary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--navy);
}

.hero .btn-secondary {
    border-color: var(--cream);
    color: var(--cream);
}

.hero .btn-secondary:hover {
    background-color: var(--cream);
    color: var(--navy);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f9f3e6;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Why PRisMA Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(28, 49, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(28, 49, 68, 0.12);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--navy);
}

/* Program Section */
.program-featured {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(28, 49, 68, 0.1);
}

.program-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.program-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.program-subtitle {
    font-size: 1.3rem;
    color: var(--navy-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.program-details {
    display: flex;
    gap: 30px;
    margin-bottom: 2rem;
    padding: 20px;
    background-color: var(--cream);
    border-radius: 8px;
    flex-wrap: wrap;
}

.program-format strong,
.program-includes strong {
    color: var(--navy);
}

.program-content {
    margin: 2rem 0;
}

.program-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.program-list {
    list-style-position: outside;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-list li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.program-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Earned Leadership Section */
.el-content {
    max-width: 900px;
    margin: 0 auto;
}

.el-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--navy-light);
}

.el-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.el-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(28, 49, 68, 0.08);
}

.el-card h3 {
    margin-bottom: 1rem;
}

.el-cta {
    text-align: center;
}

/* Who We Serve Section */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.serve-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(28, 49, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(28, 49, 68, 0.12);
}

.serve-card h3 {
    margin-bottom: 1rem;
}

/* Credentials Section */
.credentials-content {
    max-width: 900px;
    margin: 0 auto;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.credential-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(28, 49, 68, 0.08);
    text-align: center;
}

.credential-label {
    font-size: 0.9rem;
    color: var(--navy-light);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.credential-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

/* Contact Section */
.contact-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--navy-light);
}

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

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(28, 49, 68, 0.08);
}

.contact-icon {
    font-size: 2rem;
}

.contact-details {
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--navy-light);
    margin-bottom: 0.25rem;
}

.contact-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-link:hover {
    color: var(--accent);
}

.contact-note {
    background: white;
    padding: 25px;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent);
}

.contact-note p {
    margin-bottom: 0;
    color: var(--navy-light);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--cream);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    margin-bottom: 0.25rem;
}

.footer-ssm {
    color: var(--cream);
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-contact a {
    color: var(--cream);
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(253, 246, 227, 0.2);
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .section {
        padding: 50px 0;
    }

    .program-featured {
        padding: 30px 20px;
    }

    .program-title {
        font-size: 1.5rem;
    }

    .program-details {
        flex-direction: column;
        gap: 10px;
    }

    .why-grid,
    .el-grid,
    .serve-grid,
    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-details {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 24px;
    }

    .btn-large {
        padding: 12px 32px;
        font-size: 1rem;
    }
}
