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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Section */
header {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 30px;
}

header h1 {
    font-size: 2.5em;
}

header nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
}

/* Section Styling */
section {
    padding: 40px 20px;
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    color: #333;
}

/* Services Section */
ul {
    list-style: none;
    margin-top: 10px;
}

ul li {
    margin-bottom: 10px;
}

/* Portfolio Section */
.project {
    margin-bottom: 20px;
}

.project h3 {
    color: #4CAF50;
}

/* Contact Form Styling */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}

form label {
    margin-top: 10px;
}

form input {
    padding: 10px;
    margin: 5px 0;
    width: 100%;
}

form button {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #45a049;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

:root {
  --primary-color: #0073e6;
  --secondary-color: #f5f5f5;
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--secondary-color);
}

button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #005bb5;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.cta-button {
  animation: bounce 2s infinite;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 15px;
}

main {
  padding: 20px;
}

/* Mobile-first design (default styles) */
header, footer {
  text-align: center;
}

nav ul li {
  display: block;
  margin: 5px 0;
}

/* Tablets */
@media (min-width: 601px) {
  nav ul li {
    display: inline;
    margin-right: 15px;
  }
}

/* Desktops and larger screens */
@media (min-width: 901px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav ul {
    display: flex;
    justify-content: space-around;
  }
    
 body {
      font-family: sans-serif;
      background-color: #f0f4f8;
      text-align: center;
      padding: 2rem;
    }

    .signup-box {
      background: white;
      max-width: 400px;
      margin: auto;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
    }

    .signup-box h2 {
      margin-bottom: 1rem;
    }

    .signup-box input[type="email"] {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .signup-box button {
      padding: 0.75rem 1.5rem;
      background-color: #0070f3;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
    }

    .signup-box button:hover {
      background-color: #0056c1;
    } 
