/* Global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
  }
  
  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  header h1 {
    margin: 0 15px;
    font-size: 2em;
  }
  
  .logo {
    width: 200px; 
    height: auto;
  }
  
/* Basic body styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f9;
    line-height: 1.6;
}

/* Header styling */
header {
    background-color: green;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
}

.auth-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Navigation menu styling */
nav {
    background-color: #333;
    padding: 10px 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: #555;
    border-radius: 4px;
}

/* Introduction section styling */
.intro-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.intro-section h2 {
    font-size: 2em;
    color: green;
    margin-bottom: 20px;
}

.intro-section p {
    max-width: 700px;
    margin: 0 auto 20px;
    color: #666;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1em;
    color: #fff;
    background-color: green;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: greenyellow;
}

/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}
