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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding: 2rem;
  max-width: 900px;
  margin: auto;
}

/* Headings */
h1, h2, h3 {
  color: #111;
  margin-bottom: 1rem;
}

h2 {
  border-bottom: 2px solid #fd006d;
  padding-bottom: 0.25rem;
  margin-top: 2rem;
}

/* Paragraphs */
p {
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #fd006d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Image Styles */
img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Group Layouts */
.wp-block-group {
  margin-bottom: 2rem;
}

/* Centered Text (used by .has-text-align-center) */
.has-text-align-center {
  text-align: center;
}

/* Left-aligned Text */
.has-text-align-left {
  text-align: left;
}

/* Rounded Image Style (matches .is-style-rounded) */
.is-style-rounded img {
  border-radius: 12px;
}

/* Contact Info Spacing */
p strong {
  display: inline-block;
  width: 160px;
}
