*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

 .image-list {
            display: flex;
            flex-wrap: wrap; /* allow wrapping to next line */
            margin-left: 2em;
            margin-bottom: 1em;
            gap: 1em; /* space between images */
            align-items: center;
 }

 .btn {
  width: 150px;
  height: 50px;
  border-radius: 5px;
  border: none;
  transition: all 0.5s ease-in-out;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  background: #040f16;
  color: #f5f5f5;
}

.btn:hover {
  box-shadow: 0 0 20px 0px #2e2e2e3a;
}

.btn .icon {
  position: absolute;
  height: 40px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
}

.btn .text {
  transform: translateX(55px);
}

.btn:hover .icon {
  width: 175px;
}

.btn:hover .text {
  transition: all 0.5s;
  opacity: 0;
}

.btn:focus {
  outline: none;
}

.btn:active .icon {
  transform: scale(0.85);
}
 
.box2 {
    font-family: var(--font-family);
    font-size: var(--font-size);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;                /* Add this */
    flex-direction: column;       /* Add this */
    justify-content: center;      /* Add this */
    align-items: center;          /* Add this */
}

.map{
    display: block;
    height: fit-content;
    width: fit-content;
}

header{
    font-family: Aster, Baskerville, serif;
    font-weight: bolder;
    font-size: larger;
    text-align: left;
    height: 30%;
}

.box3 {
  position: absolute;
    top: 1.5em;
    right: 2em;
    z-index: 10;
}

.btn {
    width: 90px;
    height: 32px;
    font-size: 14px;
    padding: 0 10px;
}

.btn .icon svg {
    width: 20px;
    height: 20px;
}

.btn .icon {
    width: 35px;
    height: 20px;
}

.btn .text {
    transform: translateX(25px);
    font-size: 14px;
}

/* 2. Root Variables */
:root {
    --font-family: 'Segoe UI', Arial, sans-serif;
    --font-size: 16px;
    --color-bg: #fff;
    --color-text: #222;
    --color-primary: #2563eb;
    --color-secondary: #64748b;
    --color-border: #e5e7eb;
}

/* 3. Body Styles */
body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* 4. Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* 5. Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover, a:focus {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* 6. Lists */
ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}

/* 7. Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-list img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* 8. Buttons */
button,
input[type="button"],
input[type="submit"] {
    font: inherit;
    padding: 0.5em 1em;
    border: 1px solid var(--color-border);
    background: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background: var(--color-secondary);
}

/* 9. Forms */
input, textarea, select {
    font: inherit;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 0.5em;
    margin-bottom: 1em;
    width: 100%;
    box-sizing: border-box;
}

/* 10. Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1em;
}
.text-center {
    text-align: center;
}
.mt-1 { margin-top: 1em; }
.mb-1 { margin-bottom: 1em; }
.p-1 { padding: 1em; }