:root {
  /* Random Selection: #344CB7, #577BC1, #F2F2F2, #000957 */
  --primary-color: #344CB7;
  --secondary-color: #000957;
  --accent-color: #577BC1;
  --light-color: #F2F2F2;
  --dark-color: #000957;
  
  --gradient-primary: linear-gradient(135deg, #577BC1 0%, #344CB7 100%);
  --hover-color: #2a3d94;
  --background-color: #FFFFFF;
  --text-color: #333333;
  --border-color: rgba(52, 76, 183, 0.2);
  --divider-color: rgba(0, 9, 87, 0.1);
  --shadow-color: rgba(0, 9, 87, 0.1);
  --highlight-color: #FFD700; /* Gold for contrast */
  
  --main-font: 'Poppins', sans-serif;
  --alt-font: 'Roboto Condensed', sans-serif;
}

/* Custom Utilities mimicking Tailwind but using CSS Variables */
.bg-theme-primary { background-color: var(--primary-color); }
.bg-theme-light { background-color: var(--light-color); }
.text-theme-primary { color: var(--primary-color); }
.text-theme-dark { color: var(--dark-color); }
.text-theme-highlight { color: var(--highlight-color); }
.border-theme { border-color: var(--border-color); }
.hover-bg-theme:hover { background-color: var(--hover-color); }

/* Layout adjustments */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: var(--main-font);
    color: var(--text-color);
    position: relative;
    overflow-x: hidden;
}

main {
    flex-grow: 1;
    z-index: 10;
    position: relative;
}

header, footer {
    z-index: 20;
    position: relative;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23344CB7' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Specific Component Styles */
.feature-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}