/* styles.css */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    background-color: #ff9800;
    object-fit: cover;
}

header {
    background: #041a31;
    display: flex;
    flex-direction: column;
    color: #fff;
    position: fixed;
    height: 8vh;
    width: 100vw;
    align-items: center;
    padding: 20px 20px;
    z-index: 1010;
}

.header-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    position: relative;
    overflow: hidden;
}

.crep-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 100%;
    width: 45%;
}

.crep-logo img {
    width: 80%;
    height: auto;
    object-fit: contain; 
    display: block;
}

#menu-button {
    display: none;
}

header nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-right: 0px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
}

.cta {
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 18px;
}

.header-cta {
    background: #ff9800;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    margin-right: 5%;
}

.hero {
    background: url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-content .cta {
    font-size: 1rem;
}

section {
    padding: 50px 20px;
}

.platform {
    position: relative;
    color: white;
}

.platform::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 152, 0, 0.8); /* Orange overlay with transparency */
    z-index: 1;
}

.platform * {
    position: relative;
    z-index: 2;
}

.cta-container {
    display: flex;
    justify-content: space-around;
}
.cta-container button {
    background: #4890fc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}
.cta-container button:hover {
    background: #513409;
}

.about, .trainings, .platform, .partnerships {
    background: #f4f4f4;
    margin: 20px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: xx-large;
}

.features, .training-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature, .training {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer {
    background: #004080;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

footer .social-links li a {
    color: #fff;
    text-decoration: none;
}

blockquote {
  border-left: 4px solid #ccc;
  padding-left: 16px;
  margin-left: 0;
  font-style: italic;
  color: #555;
}

