:root {
  /* Colors from palette: #0F0766 (Deep Blue), #D01257 (Pinkish Red), #344CB7 (Blue), #FFCEE4 (Light Pink) */
  --primary-color: #0F0766; 
  --secondary-color: #D01257;
  --accent-color: #344CB7;
  --light-color: #FFCEE4;
  --dark-color: #090442;
  --gradient-primary: linear-gradient(135deg, #0F0766 0%, #344CB7 100%);
  --hover-color: #A00B42;
  --bg-color: #FEFAE0; /* Light background from palette */
  --text-dark: #1A1A24;
  --text-muted: #4A4A5A;
  --text-light: #FFFFFF;
  --border-color: rgba(15, 7, 102, 0.15);
  --shadow-color: rgba(15, 7, 102, 0.1);
  --highlight-color: #F1C40F; /* Complementary yellow from palette */
  
  --font-heading: 'Montserrat', sans-serif;
  --site-text: 'Roboto', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.content-block {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 25px -5px var(--shadow-color);
    border-radius: 12px;
}

.pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%230F0766' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .header-mobile {
        flex-direction: column;
        justify-content: center;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .footer-mobile {
        flex-direction: column;
        text-align: center;
    }
}