* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    max-width: 1440px;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    margin: auto;
}
.acupuncture-hero__content {
    padding: 45px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.532);
}
.acupuncture-hero__title {
    font-size: 3rem;
    color: rgb(255, 110, 43);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.acupuncture-hero__text {
    font-size: 1.7rem;
    color: rgba(215, 83, 21, 0.895);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.acupuncture-hero__button-link {
    display: flex;
    align-self: center;
    justify-content: center;
    cursor: pointer;
    background-color: rgb(255, 110, 43);
    border-style: none;
    padding: 10px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
}
