/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.navbar {
    background-color: #4a90e2;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 10px 0;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #357ABD;
}

.dottedborder {
    border: 2px dotted #4a90e2;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header {
    font-weight: 700;
    font-size: 2.5rem;
    text-align: center;
    color: #222;
    margin: 0;
}

.center {
    display: block;
    width: 100%;
    text-align: center;
}

.footer {
    background-color: #4a90e2;
    color: white;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid #357ABD;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.footer-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.toyimage {
    margin-left: 15px;
    margin-bottom: 10px;
    display: block;
    max-width: 250px;
    height: auto;
    
}

.toyitem {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.toyitem > div {
    flex: 1;
}

.content {
    overflow: auto;
}

.content p {
    clear: right;
}

.button {
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
}

/* Mobile support: Responsive styles */
@media (max-width: 600px) {
  .container {
    max-width: 100%;
    margin: 10px;
    padding: 0 10px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .navbar ul li a {
    font-size: 1.5rem;
    padding: 14px;
    text-align: center;
  }

  .toyimage {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .toyitem {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logos {
    flex-direction: column;
    gap: 20px;
  }

  .header {
    font-size: 2.5rem;
  }

  .content h1 {
    font-size: 1.8rem;
  }

  .content p {
    font-size: 1.2rem;
  }
}
