/*
Theme Name: Learning Opportunities
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A WordPress theme for learning opportunities and course listings
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: learning-opportunities
*/

:root {
  --primary-blue: #3d5a96;
  --dark-blue: #2c4270;
  --light-blue: #d4e8f0;
  --cyan: #9dd9e8;
  --red: #dc3545;
  --orange: #f5a623;
  --yellow: #f8d347;
  --text-dark: #333;
  --text-light: #666;
  --border-color: #e0e0e0;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
