/* styles.css */
:root {
  --primary: rgb(235, 140, 0);
}

body {
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  width: 100%;
  gap: 20px;
  justify-content: center;
}

.box {
  flex: 1 1 400px;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

h1 {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact a {
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
}

.contact a img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

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