﻿:root {
    --template-primary: #234ca0; /* Refined blue - adjust as needed */
    --template-accent: #f3c852; /* Refined gold/yellow - adjust as needed */
    --template-bg: #f8fafc;
    --template-bg-alt: #fff;
    --template-border: #e5e7eb;
    --template-shadow: 0 2px 24px rgba(44, 76, 156, 0.08);
    --template-radius: 18px;
    --template-section-gap: 5rem;
    --template-font: 'DM Sans', 'Segoe UI', Arial, sans-serif;
    --template-font-headers: 'DM Sans', 'Segoe UI', Arial, sans-serif;
    --template-header-weight: 700;
    --template-body-weight: 400;
    --platinum-title: #7e8793;
}

html, body {
    min-height: 100vh;
    background: var(--template-bg);
    color: #182242;
    font-family: var(--template-font);
    font-weight: var(--template-body-weight);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.65;
    font-size: 1.08rem;
    overflow-x: hidden;
}

section {
    margin-bottom: var(--template-section-gap);
    background: var(--template-bg-alt);
    border-radius: var(--template-radius);
    box-shadow: var(--template-shadow);
    padding: 3.5rem 0;
    position: relative;
}

@media (max-width: 900px) {
    section {
        padding: 2.2rem 0;
        margin-bottom: 3rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--template-font-headers);
    font-weight: var(--template-header-weight);
    margin: 0 0 1.3rem 0;
    color: var(--template-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.11;
}

h2 {
    font-size: 2.1rem;
    line-height: 1.16;
}

h3 {
    font-size: 1.45rem;
    line-height: 1.21;
}

h4, h5, h6 {
    font-size: 1.09rem;
    font-weight: 600;
}

p {
    font-size: 1.07rem;
    margin: 0 0 1.2rem 0;
    color: #21305a;
}

a {
    color: var(--template-primary);
    text-decoration: none;
    transition: color .15s;
}

    a:hover, a:focus {
        color: var(--template-accent);
    }

.button, .btn, button, input[type="submit"] {
    background: var(--template-primary);
    color: #fff;
    border-radius: var(--template-radius);
    border: none;
    padding: 0.9em 2.6em;
    font-family: var(--template-font);
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 2px 18px rgba(35,76,160,0.09);
    cursor: pointer;
    transition: background 0.18s, color 0.15s, box-shadow 0.15s;
    outline: none;
}

    .button:hover, .btn:hover, button:hover, input[type="submit"]:hover {
        background: var(--template-accent);
        color: var(--template-primary);
    }

.card, .feature-card, .testimonial-card, .pricing-card {
    background: var(--template-bg-alt);
    border-radius: var(--template-radius);
    box-shadow: var(--template-shadow);
    padding: 2rem 2.3rem;
    border: 1px solid var(--template-border);
    margin-bottom: 2.5rem;
}

.feature-card {
    text-align: left;
    border-left: 5px solid var(--template-accent);
}

.pricing-card {
    text-align: center;
    border-top: 4px solid var(--template-primary);
    background: #f9fbff;
}

.testimonial-card {
    background: #fffbe6;
    border-left: 5px solid var(--template-accent);
}

.cta-section {
    background: linear-gradient(108deg, var(--template-primary) 60%, var(--template-accent) 100%);
    color: #fff;
    padding: 3.7rem 0 3.7rem 0;
    border-radius: var(--template-radius);
    text-align: center;
    box-shadow: 0 4px 32px rgba(35,76,160,0.16);
}

    .cta-section h2, .cta-section h3, .cta-section h4 {
        color: #fff;
    }

img {
    max-width: 100%;
    border-radius: calc(var(--template-radius) - 4px);
    box-shadow: 0 1.5px 8px rgba(44,76,156,0.07);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.2rem;
    box-shadow: 0 2px 6px rgba(35,76,160,0.13);
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
}

    .pricing-table th, .pricing-table td {
        padding: 1.2rem 1.4rem;
        border-bottom: 1px solid var(--template-border);
    }

    .pricing-table th {
        background: #f3f7fd;
        color: var(--template-primary);
        font-size: 1.11em;
    }

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.38rem;
    }

    .card, .feature-card, .testimonial-card, .pricing-card {
        padding: 1.15rem 0.85rem;
    }

    section, .cta-section {
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
}

/* Divider for between sections */
.section-divider {
    border: none;
    border-top: 2.5px solid var(--template-border);
    margin: 0 0 var(--template-section-gap) 0;
}

blockquote {
    color: #636681;
    font-style: italic;
    border-left: 4px solid var(--template-accent);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--template-accent) !important;
}

.bg-primary {
    background: var(--template-primary) !important;
    color: #fff !important;
}

.bg-accent {
    background: var(--template-accent) !important;
    color: #fff !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.7rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.7rem !important;
}

.p-0 {
    padding: 0 !important;
}

.features-title,
.pricing-title,
.case-studies-title,
.testimonials-title,
.contact-title {
    color: var(--platinum-title) !important;
}
/* End TemplateE.css */
