* {
    flex-shrink: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

body.no-scroll {
    height: 100vh;
    overflow: hidden;
}
.container {
    margin: 0 auto;
    max-width: 980px;
    padding: 0 10px;
}
.btn {
    line-height: 34px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #007acc, #0056b3);
    color: white;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 122, 204, 0.3);
}
.btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.4);
}
.header {
    padding: 20px;
    background: linear-gradient(135deg, #f8fdff, #e8f4f8);
    border-bottom: 3px solid #007acc;
    box-shadow: 0 2px 10px rgba(0, 122, 204, 0.1);
}
.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero {
    background: linear-gradient(135deg, #f8fdff, #e8f4f8);
    padding: 40px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50" cy="50" r="50"><stop offset="0" stop-color="%23007acc" stop-opacity="0.03"/><stop offset="1" stop-color="%23007acc" stop-opacity="0"/></radialGradient></defs><circle cx="20" cy="10" r="10" fill="url(%23a)"/><circle cx="80" cy="10" r="10" fill="url(%23a)"/></svg>');
    pointer-events: none;
}

.hero__flex {
    display: flex;
    justify-content: space-between;
}

.hero__left {
    width: 49%;
}

.hero__left h1 {
    color: #003d82;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 61, 130, 0.1);
}

.hero__left p {
    font-weight: 400;
    font-size: 26px;
    color: #2c5aa0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(44, 90, 160, 0.1);
}

.hero__right {
    width: 450px;
}

.hero__right img{
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 122, 204, 0.2);
    transition: transform 0.3s ease;
}

.hero__right img:hover {
    transform: scale(1.02);
}

.list {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff, #f8fdff);
}

.list__flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.list__item {
    border: 2px solid #007acc;
    border-radius: 15px;
    text-align: center;
    width: 18%;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffffff, #f8fdff);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 122, 204, 0.1);
}

.list__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 122, 204, 0.2);
    border-color: #0056b3;
}

.list__title {
    margin-bottom: 40px;
    font-size: 32px;
    color: #003d82;
    font-weight: 700;
    text-align: center;
}

.list__item-img {
    padding: 20px;
}

.list__item-img img{
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.why {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fdff, #ffffff);
}

.why__title {
    font-size: 32px;
    color: #003d82;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.why__item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fdff);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 122, 204, 0.1);
    transition: all 0.3s ease;
}

.why__item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 122, 204, 0.2);
}

.why__text {
    font-size: 18px;
    color: #2c5aa0;
    font-weight: 500;
    line-height: 1.4;
}

.why__icon {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.why__icon img{
    width: 100%;
}

.contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #007acc, #0056b3);
}

.contact__title {
    text-align: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact__form {
    width: 500px;
    margin: auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.input {
    width: 100%;
    padding: 15px 46px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input:focus {
    border-color: #007acc;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 122, 204, 0.2);
}

.select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.select:focus {
    border-color: #007acc;
    outline: none;
}

.form__btn {
    width: 100%;
    border: none;
    font-size: 18px;
    padding: 15px;
}

/* Consent Styling */
.consent-container {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8fdff, #ffffff);
    border-radius: 15px;
    border: 2px solid #e1e5e9;
    transition: all 0.3s ease;
}

.consent-container:hover {
    border-color: #007acc;
    box-shadow: 0 5px 15px rgba(0, 122, 204, 0.1);
}

.consent-item {
    margin-bottom: 15px;
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    color: #2c5aa0;
    transition: all 0.3s ease;
}

.consent-label:hover {
    color: #003d82;
}

.consent-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.consent-checkmark {
    position: relative;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border: 2px solid #007acc;
    border-radius: 4px;
    margin-right: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-label:hover .consent-checkmark {
    background-color: #f8fdff;
    border-color: #0056b3;
    transform: scale(1.05);
}

.consent-checkbox:checked ~ .consent-checkmark {
    background: linear-gradient(135deg, #007acc, #0056b3);
    border-color: #007acc;
    box-shadow: 0 2px 8px rgba(0, 122, 204, 0.3);
}

.consent-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox:checked ~ .consent-checkmark:after {
    display: block;
}

.consent-text {
    flex: 1;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.consent-text .privacy-policy-link {
    color: #007acc;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.consent-text .privacy-policy-link:hover {
    color: #0056b3;
}

/* Animation for checkbox */
@keyframes checkboxPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 122, 204, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 16px rgba(0, 122, 204, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0, 122, 204, 0.3);
    }
}

.consent-checkbox:checked ~ .consent-checkmark {
    animation: checkboxPulse 0.3s ease-in-out;
}

/* Mobile responsiveness for consent */
@media (max-width: 768px) {
    .consent-container {
        padding: 15px;
        margin: 20px 0;
    }
    
    .consent-label {
        font-size: 13px;
    }
    
    .consent-checkmark {
        height: 16px;
        width: 16px;
        margin-right: 10px;
    }
    
    .consent-checkmark:after {
        left: 4px;
        top: 1px;
        width: 3px;
        height: 6px;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(420px);
    transition: all 0.3s ease;
    opacity: 0;
    border-left: 5px solid #007acc;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-icon {
    font-size: 18px;
    font-weight: bold;
    color: #007acc;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    color: #28a745;
}

.notification-error .notification-icon {
    color: #dc3545;
}

.notification-message {
    flex: 1;
    color: #2c5aa0;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

/* Shake Animation for Validation Errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Mobile responsiveness for notifications */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .notification-content {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.footer {
    background: linear-gradient(135deg, #f8fdff, #e8f4f8);
    border-top: 3px solid #007acc;
}

.footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__info-top {
    margin-bottom: 10px;
}

.footer__info-bottom a{
    color: #007acc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer__info-bottom a:hover {
    color: #0056b3;
}

.copy {
    padding: 20px 0;
    text-align: center;
    color: #2c5aa0;
    font-weight: 500;
}

.disclamer {
    color: #007acc;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

.disclamer:hover {
    color: #0056b3;
}

.privacy-policy-link {
    color: #007acc;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
    text-decoration: none;
}

.privacy-policy-link:hover {
    color: #0056b3;
}

strong {
    color: #003d82;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 25px 0 15px 0;
    padding: 10px 0;
    border-left: 4px solid #007acc;
    padding-left: 15px;
}

p {
    color: #2c5aa0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popup__close {
    width: 20px;
    height: 20px;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: .3s;
}

.popup__close:hover {
    opacity: .7;
}

.popup__close svg{
    width: 100%;
    height: 100%;
}

.pop-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    opacity: 0;
    z-index: -99999;
    visibility: hidden;
    background-color: #000000f2;
}
.pop-wrapper.active{
    opacity: 1;
    z-index: 99999;
    visibility: visible;
}

.popup {
    display: none;
    position: relative;
    width: 500px;
    max-width: 500px;
    padding: 40px 20px;
    border-radius: 10px;
    background-color: white;
}

@media(max-width: 768px) {
    .popup {
        width: 100%;
    }
}

.popup.active {
    display: block;
}

.editor {
    padding: 20px;
}