:root {
    --primary-purple: #6A0DAD; /* Deep Purple from Logo */
    --secondary-pink: #B300B3; /* Vivid Pink/Magenta from Logo */
    --light-purple: #EBE0FF;
    --dark-grey: #343a40;
    --text-color: #495057;
    --accent-pink: #E91E63; /* For stronger accents */
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6; /* Added for better readability on policy pages, good for general too */
}

.navbar {
    background-color: var(--primary-purple);
    padding: 1rem 0;
}
.navbar-brand {
    color: #FFFFFF !important;
    font-weight: bold;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}
.navbar-brand img {
    height: 40px; /* Adjust logo height as needed */
    margin-right: 10px;
}
.nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    margin-left: 15px;
}
.nav-link:hover {
    color: var(--secondary-pink) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-pink) 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}
.btn-primary-custom {
    background-color: #FFFFFF;
    color: var(--primary-purple);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: var(--light-purple);
    color: var(--primary-purple);
    transform: translateY(-3px);
}
.btn-secondary-custom {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-left: 20px;
    transition: all 0.3s ease;
}
.btn-secondary-custom:hover {
    background-color: #FFFFFF;
    color: var(--primary-purple);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 40px;
    text-align: center;
}

.features-section .card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}
.features-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.features-section .card-title {
    color: var(--primary-purple);
    font-weight: 600;
}
.features-section .card-icon {
    font-size: 3rem;
    color: var(--secondary-pink);
    margin-bottom: 20px;
}

.modules-section {
    background-color: var(--light-purple);
    padding: 60px 0;
}
.modules-section .module-item {
    text-align: center;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%; /* Ensure cards are same height */
}
.modules-section .module-item i {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 15px;
}
.modules-section .module-item h4 {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-software-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Or a very light grey if you prefer */
    text-align: center;
}
.custom-software-section h2 {
    color: var(--primary-purple);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.custom-software-section p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.custom-software-section .btn-secondary-custom-inverted {
    background-color: var(--secondary-pink);
    color: #FFFFFF;
    border: 2px solid var(--secondary-pink);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.custom-software-section .btn-secondary-custom-inverted:hover {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

/* Pricing Section Specific Styles */
.pricing-card-title small {
    font-size: 60%;
}
/* Adjust grid for 4 columns on larger screens */
.pricing-section .row.row-cols-lg-4 > .col {
    max-width: 25%; /* Ensures 4 columns fit properly */
}
.pricing-section .card {
    border: 1px solid #ddd;
}
.pricing-section .card-header {
    border-bottom: 1px solid #ddd;
}
/* Highlight for the recommended plan */
.pricing-section .card.border-2 {
    transform: scale(1.03); /* Slightly enlarge */
    z-index: 1; /* Bring to front */
}
.pricing-section .card.border-2 .card-header {
    border-bottom: 1px solid var(--primary-purple); /* Match card border */
}
.list-group-item {
    font-size: 1.05rem;
    color: var(--text-color);
}
.list-group-item i.fas {
    color: var(--secondary-pink); /* Make checkmarks brand colored */
}
.pricing-card-title {
    font-size: 2.5rem; /* Larger price font */
    font-weight: 700;
    color: var(--primary-purple);
}
.pricing-card-title small {
    font-size: 0.6em; /* Adjust small text size relative to price */
    font-weight: 400;
    color: var(--text-color);
}
/* Styling for Enterprise & Custom card specifically */
.pricing-section .col-lg-4.col-md-6.col-sm-8.mt-4.mx-auto .card-header {
    background-color: var(--primary-purple) !important;
}


/* Contact Section Specific Styles */
.form-control:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(106, 13, 173, 0.25); /* Purple shadow */
}
.social-icons a i {
    transition: color 0.3s ease;
}
.social-icons a i:hover {
    color: var(--secondary-pink) !important;
}

.cta-section {
    background-color: var(--primary-purple);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer {
    background-color: var(--dark-grey);
    color: #FFFFFF;
    padding: 40px 0;
    font-size: 0.9rem;
}
.footer a {
    color: #FFFFFF;
    text-decoration: none;
}
.footer a:hover {
    color: var(--secondary-pink);
}