.subnot-container {
    display: flex;
    max-width: 900px;
    margin: 50px auto;
    background: none;
}
.subnot-info-section {
    flex: 1;
    color: #080808;
    padding: 40px;
}
.subnot-info-section h2 {
    font-size: 2em;
    margin-bottom: 12px;
}
.subnot-info-section ul {
    margin-top: 16px;
    padding-left: 20px;
}
.subnot-subscribe-section {
    flex: 1;
    background: #ffffff;
    padding: 32px 24px;
    margin: 24px 0;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(60,60,130,0.13);
    min-width: 320px;
    max-width: 400px;
}
.subnot-subscribe-section form label {
    display: block;
    margin: 18px 0 6px;
    font-weight: 600;
}
.subnot-styled-input,
.subnot-subscribe-section form input[type=email],
.subnot-subscribe-section form input[type=tel],
.subnot-subscribe-section form select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #bbb;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 1em;
    box-sizing: border-box;
}
.subnot-button {
    background: #4a67ef;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.1em;
    margin-top: 14px;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subnot-button:hover { background: #2544ab; }
.subnot-multi-select {
    position: relative;
    border: 1px solid #bbb;
    border-radius: 6px;
    min-height: 40px;
    background: #fafaff;
    margin-bottom: 10px;
    cursor: pointer;
    user-select: none;
}
.subnot-multi-select-selected {
    padding: 8px 10px;
    display: block;
    color: #333;
}
.subnot-multi-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border: 1px solid #b7bbce;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 1px 8px rgba(60,60,130,0.16);
    z-index: 10;
    padding: 8px 0;
}
.subnot-multi-select.open .subnot-multi-select-options {
    display: block;
}
.subnot-multi-select-options label {
    display: block;
    padding: 6px 16px;
    cursor: pointer;
    font-weight: normal;
}
.subnot-multi-select-options input[type=checkbox] {
    margin-right: 8px;
}
.subnot-subscribe-result {
    padding: 10px 2px 0 2px;
    min-height: 26px;
    font-size: 1em;
}
#subnot-phoneSection {
    margin-bottom: 0;
}
#subnot-phoneSection label {
    margin: 18px 0 6px 0;
}
#subnot-phoneSection input[type=tel] {
    margin-bottom: 10px;
}
body {
    background: linear-gradient(90deg, #dbdbdb 0%, #616161 100%);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}