.campaign-contacts {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
    width: 30%;
    gap: 15px;
    padding-top: 10px;
}

.contact-part {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.part-title {
    min-width: 100px;
    font-size: 14px;
    font-weight: 600;
}

.part-info {
    font-size: 14px;
    font-weight: 400;
}

.features {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 55%;
    gap: 10px 15px;
    justify-content: flex-end;
    height: 100%;
}

.feature {
    width: 35%;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    background-color: #FFFFFF;
    flex-wrap: wrap;
    gap: 5px;
    padding: 15px 10px;
}

.feature-icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin: 0 5px;
}

.feature-img {
    width: 40px;
}

.feature-text {
    font-size: 14px;
    height: 45px;
    display: flex;
    align-items: flex-end;
    padding: 0 15px;
}


.notice {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    border-radius: 30px;
    padding: 30px;
    background-color: #FFCFD0;
    width: 25%;
}

.notice-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 24px;
}

.notice-text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 20px;
    font-weight: 400;
    margin-bottom: 0;
}

.feedback-block,
.unsubscribe-block,
.unsubscribe-success-block {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.feedback-block {
    margin: 30px 0;
}
.unsubscribe-block,
.unsubscribe-success-block {
    margin: 40px 0;
}

.feedback-content,
.unsubscribe-content,
.unsubscribe-success-content {
    width: 70%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 40px;
}

.feedback-title,
.unsubscribe-title,
.unsubscribe-success-title {
    font-size: 24px;
    font-weight: 700;
}

.feedback-title {
    padding: 15px 0;
}

.unsubscribe-title {
    padding: 0 0 15px 0;
}


.feedback-info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.feedback-form form,
.unsubscribe-form form {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 34px;
}
.unsubscribe-form form {
    gap: 20px;
}


.form-field,
.unsubscribe-field {
    border-radius: 10px;
    border: 1px solid #e1516c;
    font-size: 16px;
    background-color: #f6f6ed;
    color: #000000;
    padding: 15px;
    width: 20%;
}

.unsubscribe-field {
    width: 75%
}

.form-field:focus,
.unsubscribe-field:focus {
    border: 1px solid #e1516c; /* зелёная рамка */
    outline: none;             /* убрать стандартную синюю обводку */
    background-color: #e1cece; /* подсветка фона */
}

.form-field:hover,
.unsubscribe-field:hover {
    cursor: pointer;
}

.feedback-button,
.unsubscribe-button {
    color: #fff;
    background-color: #e1516c;
    border-radius: 30px;
    border: 0;
    height: -webkit-fill-available;
    font-size: 12px;
    font-weight: 700;
    width: 20%;
}

.unsubscribe-button {
    width: 25%;
}

.feedback-button:hover,
.unsubscribe-button:hover {
    outline: none;
    border: 1px solid #e1516c; /* синяя рамка */
    background-color: #fff;
    color: #e1516c;
    cursor: pointer;
}


.footer-block {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 60px;
}

.footer-content {
    width: 80%;
    flex-direction: column;
    align-items: center;
    background-color: #e1cece;
    border-radius: 30px;
    padding: 30px;
}

.legal-links-wrapper{
    flex-direction: column;
    width: 90%;
    gap: 25px;
}

.legal-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    list-style: none;     /* убираем стандартные маркеры */
    padding-left: 0;
    gap: 20px;
}

.legal-links .legal-link {
    position: relative;
    padding-left: 20px;   /* место под кубик */
    margin: 5px 0;
}

.legal-links .legal-link::before {
    content: "■";
    position: absolute;
    left: 5px;
    top: 5px;
    color: #e1516c;
    font-size: 12px;
    line-height: 1;
}

.legal-links a {
    text-decoration: underline;
    color: #e1516c;
    line-height: 20px;
}

.legal-text {
    display: flex;
    flex-direction: row;
    width: 100%;
    font-size: 13px;
}

.footer-copy {
    justify-content: space-between;
    width: 90%;
    border-top: 1px solid #C7C7C7;
    border-bottom: 1px solid #C7C7C7;
    padding: 10px 0;
    margin: 25px 0;
    align-items: center;
}
.copy-text {
    font-size: 14px;
    line-height: 24px;
}

.copy-text span {
    font-weight: 700;
}

.copy-mail {
    color: #A3A3A3;
    font-size: 13px;
    line-height: 24px;
}

.copy-18 {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copy-img {
    border: 2px solid #a3a3a3;
    border-radius: 50%;
    padding: 6px;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.copy-18-text {
    max-width: 200px;
    font-size: 13px;
    color: #A3A3A3;
    line-height: 18px;
}

.copy-payment {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

.payment-img {
    width: 75px;
    height: 50px;
    object-fit: scale-down;
}

.footer-text {
    flex-direction: row;
    width: 90%;
    justify-content: space-between;
    gap: 30px;
}

.footer-text div {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.footer-text > div > p {
    font-size: 13px;
    line-height: 24px;
}

.footer-text > div > p > a {
    color: inherit;
    text-decoration: underline;
}

.empty-subscription {
    font-size: 16px;
    font-weight: 400;
}

.unsubscribe-success-line {
    height: 5px;
    width: 130px;
    background-color: #e1516c;
    margin: 10px 0 10px 0;
}

.unsubscribe-success-content {
    flex-direction: column;
    align-items: center;
}