/* Reset styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}
form label,
form input[type="text"],
form textarea {
  padding: 8px;
}


body {
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;

}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

a:hover {
  color: #0078d7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
.container {
  padding: 20px;
}

/* Header styles */
header {
  background-color: #0078d7;
  color: #fff;
  padding: 20px;
}

header h1 {
  font-size: 36px;
  margin: 0;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: #fff;
  font-size: 20px;
}

/* Main styles */
/* Default styles */
main {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
  main {
    margin: 10px;
    padding: 10px;
  }
}


section {
  margin-bottom: 40px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

form {
  display: flex;
  flex-wrap: wrap;
}

form label {
  display: block;
  font-size: 18px;
  width: 100%;
  margin-bottom: 10px;
}

form input[type="text"],
form textarea {
  font-size: 18px;
  padding: 10px;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  margin-bottom: 20px;
}

form button[type="submit"] {
  background-color: #0078d7;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #0059a7;
}

form input[type="text"]:focus,
form textarea:focus {
  outline: none;
  border-color: #0078d7;
}

ul {
  font-size: 18px;
}

li {
  margin-bottom: 10px;
}

  /* Responsive styles */
  @media (min-width: 768px) {
    form {
      justify-content: space-between;
    }

    form label {
      width: auto;
      margin-right: 20px;
    }

    form input[type="text"],
    form textarea {
      width: calc(50% - 10px);
    }
  }

  @media (min-width: 992px) {
    main {
      margin-top: 40px;
      margin-bottom: 40px;
    }

    form input[type="text"],
    form textarea {
      width: calc(33.33% - 10px);
    }
  }

  @media (min-width: 1200px) {
    form label {
      margin-right: 30px;
    }

    form input[type="text"],
    form textarea {
      width: calc(25% - 10px);
    }
  }

  
  /* Reset styles */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* General styles */
a {
  text-decoration: none;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

/* Header styles */
header {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

header h1 {
  font-size: 36px;
  margin: 0;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

nav li {
  margin-left: 20px;
}

nav a {
  color: #fff;
  font-size: 20px;
}

/* Main styles */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

form label {
  display: block;
  font-size: 18px;
  width: 100%;
  margin-bottom: 10px;
}

form input[type="text"] {
  font-size: 18px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

form textarea {
  font-size: 18px;
  padding: 10px;
  width: 100%;
  height: 100px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
}

form button[type="submit"] {
  background-color: #333;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button[type="submit"]:hover {
  background-color: #444;
}

ul {
  font-size: 18px;
}

li {
  margin-bottom: 10px;
}

.item-radio {
  margin-right: 8px;
}



