/* Base colors */
:root {
    --base-dark: #190933;      /* primary background / text base */
    --base-gray: #665687;      /* secondary text, borders */
    --highlight: #B084CC;      /* accent color for borders, buttons, highlights */
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #FDF6F0; /* antique white base */
    color: var(--base-dark);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--base-dark);
    font-weight: bold;
}

a {
    color: var(--highlight);
    text-decoration: none;
}

a:hover {
    color: var(--base-gray);
}

/* Hero Section */
header h1 {
    color: var(--highlight); /* company name visible */
}

/* Pricing Section */
.pricing-section {
    padding: 60px 20px;
    background-color: #FFF; 
    text-align: center;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background-color: #fff; /* remove background color */
    border: 3px solid var(--base-dark); /* outline uses highlight color */
    border-radius: 12px;
    padding: 30px;
    flex: 1 1 250px;
    max-width: 300px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    margin-bottom: 15px;
    color: var(--base-dark);
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--highlight);
    margin: 15px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--base-dark);
    color: var(--base-dark);
}

.pricing-card button {
    align-self: center; /* center button horizontally */
    margin-top: 20px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    background-color: var(--highlight);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pricing-card button:hover {
    background-color: var(--base-gray);
}

/* Services Section cards outline adjustment */
section .row > div > div {
    background-color: #fff; /* remove background fill */
    border: 2px solid var(--highlight);
    padding: 20px;
    border-radius: 12px;
}
