* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #0a0e27;
    color: #e0e6ed;
}

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, red, #1565c0);
    color: #ffffff;
    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(30, 136, 229, 0.5);
}
.btn:hover {
    background: linear-gradient(135deg, #f5f5f5, #e5e7eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.7);
}
.header {
    padding: 20px;
    background: linear-gradient(135deg, #f7b3b3, #f9d6d6);
    border-bottom: 3px solid black;
    box-shadow: 0 2px 10px rgba(30, 136, 229, 0.3);
}
.header__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero {
    background: linear-gradient(135deg, #ff6b6b, #ffd6d6);
    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="%231e88e5" stop-opacity="0.08"/><stop offset="1" stop-color="%231e88e5" 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: black;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(30, 136, 229, 0.3);
}

.hero__left p {
    font-weight: 400;
    font-size: 26px;
    color: black;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(30, 136, 229, 0.2);
}

.hero__right {
    width: 450px;
}

.hero__right img{
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.3);
}

.hero__right img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.5);
}

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

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

.list__item {
    border-radius: 15px;
    text-align: center;
    flex: 1 1 calc(25% - 20px);
    min-width: 200px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f5f5f5, #e5e7eb);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.3);
}

.list__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.5);
    border-color: #1565c0;
}

.list__title {
    margin-bottom: 40px;
    font-size: 32px;
    color: black;
    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, #ff6b6b, #ffd6d6);
}

.why__title {
    font-size: 32px;
    color: black;
    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, #f5f5f5, #e5e7eb);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.2);
}

.why__item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
    border-color: rgba(30, 136, 229, 0.5);
}

.why__text {
    font-size: 18px;
    color: black;
    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, #f5f5f5, #e5e7eb);
}

.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.3);
}

.contact__form {
    width: 500px;
    margin: auto;
    background: #1b263b;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(30, 136, 229, 0.3);
}

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

.input:focus {
    border-color: red;
    outline: none;
    box-shadow: 0 0 10px rgba(30, 136, 229, 0.5);
}

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

.select:focus {
    border-color: red;
    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, #f7b3b3, #f9d6d6);
    border-radius: 15px;
    border: 2px solid #2d3a4f;
    transition: all 0.3s ease;
}

.consent-container:hover {
    border-color: red;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.3);
}

.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: black;
    transition: all 0.3s ease;
}

.consent-label:hover {
    color: black;
}

.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: #0d1b2a;
    border: 2px solid red;
    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: #1b263b;
    border-color: #1565c0;
    transform: scale(1.05);
}

.consent-checkbox:checked ~ .consent-checkmark {
    background: linear-gradient(135deg, red, #1565c0);
    border-color: red;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.5);
}

.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: black;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.consent-text .privacy-policy-link:hover {
    color: #42a5f5;
}

/* 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: #1b263b;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(420px);
    transition: all 0.3s ease;
    opacity: 0;
    border-left: 5px solid red;
}

.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: red;
    flex-shrink: 0;
}

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

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

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

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: black;
    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: #2d3a4f;
    color: #e0e6ed;
}

/* 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, #f7b3b3, #f9d6d6);
    border-top: 3px solid black;
}

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

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

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

.footer__info-bottom a:hover {
    color: #42a5f5;
}

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

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

.disclamer:hover {
    color: #42a5f5;
}

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

.privacy-policy-link:hover {
    color: #42a5f5;
}

strong {
    color: black;
    font-size: 20px;
    font-weight: 700;
    display: block;
    margin: 25px 0 15px 0;
    padding: 10px 0;
    border-left: 4px solid red;
    padding-left: 15px;
}

p {
    color: black;
    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: #1b263b;
    border: 1px solid rgba(30, 136, 229, 0.3);
    color: #e0e6ed;
}

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

.popup.active {
    display: block;
}

.editor {
    padding: 20px;
}

/* Phone input dark mode */
.phone-input {
    background: #0d1b2a !important;
    border-color: #2d3a4f !important;
}

.phone-input span {
    color: #e0e6ed !important;
}

.phone-input input {
    background: transparent !important;
    color: #e0e6ed !important;
}

.phone-input input::placeholder {
    color: black !important;
}

/* Advertorial dark mode */
.adventotorial {
    color: black !important;
}

/* Popup info box dark mode */
.popup-info__box {
    color: black;
}

.popup-info__box h3 {
    color: #64b5f6 !important;
}

.popup-info__box h4 {
    color: #42a5f5 !important;
}

.popup-info__box ul {
    color: black !important;
}

.popup-info__box li {
    color: black !important;
}

.popup-info__box p {
    color: black !important;
}

/* Form inside popup */
.popup-form .input {
    background-color: #0d1b2a;
    border-color: #2d3a4f;
    color: #e0e6ed;
}

.popup-form .select {
    background-color: #0d1b2a;
    border-color: #2d3a4f;
    color: #e0e6ed;
}

/* Input placeholder colors */
input::placeholder {
    color: black;
    opacity: 0.7;
}

select option {
    background-color: #0d1b2a;
    color: #e0e6ed;
}

/* ===== RESPONSIVE DESIGN - MOBILE & TABLET ===== */

/* Tablet Styles (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header - Keep logo and button on one line */
    .header {
        padding: 15px 0;
    }

    .header__flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .header__logo img {
        width: 140px;
        height: auto;
    }

    .header__btn {
        padding: 10px 16px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Hero Section */
    .hero {
        padding: 30px 0;
    }

    .hero__flex {
        flex-direction: column;
        gap: 30px;
    }

    .hero__left,
    .hero__right {
        width: 100%;
    }

    .hero__right {
        order: -1; /* Move image to top on mobile */
    }

    .hero__left h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero__left p {
        font-size: 18px;
    }

    /* List Section */
    .list {
        padding: 40px 0;
    }

    .list__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .list__flex {
        flex-direction: column;
        gap: 15px;
    }

    .list__item {
        width: 100%;
        flex: none;
        min-width: auto;
        padding: 20px 15px;
    }

    .list__item-img img {
        height: 40px;
    }

    .list__btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    /* Why Section */
    .why {
        padding: 40px 0;
    }

    .why__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .why__item {
        padding: 15px;
        margin-bottom: 20px;
    }

    .why__text {
        font-size: 16px;
    }

    .why__icon {
        width: 25px;
        height: 25px;
        margin-right: 15px;
    }

    /* Contact Section */
    .contact {
        padding: 40px 0;
    }

    .contact__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .contact__form {
        width: 100%;
        padding: 30px 20px;
    }

    .input,
    .select {
        padding: 12px 15px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .phone-input {
        padding: 12px 15px;
    }

    /* Footer */
    .footer__flex {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .footer__logo img {
        width: 150px;
        height: auto;
    }

    .footer__info {
        text-align: center;
    }

    .footer__info-top {
        font-size: 14px;
    }

    .copy {
        font-size: 12px;
        padding: 15px 0;
    }

    /* Typography */
    strong {
        font-size: 18px;
        margin: 20px 0 10px 0;
    }

    p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    /* Popup */
    .popup {
        width: 90%;
        max-width: 90%;
        padding: 30px 15px;
        margin: 0 20px;
    }

    .popup-info__box {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Header - Keep logo and button on one line */
    .header {
        padding: 10px 0;
    }

    .header__flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }

    .adventotorial {
        font-size: 14px;
        padding: 8px 0;
    }

    .header__logo img {
        width: 110px;
    }

    .header__btn {
        font-size: 12px;
        padding: 8px 12px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Hero Section */
    .hero {
        padding: 20px 0;
    }

    .hero__flex {
        gap: 20px;
    }

    .hero__left h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .hero__left p {
        font-size: 16px;
    }

    /* List Section */
    .list {
        padding: 30px 0;
    }

    .list__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .list__flex {
        flex-direction: column;
        gap: 15px;
    }

    .list__item {
        width: 100%;
        flex: none;
        min-width: auto;
        padding: 20px 15px;
    }

    .list__btn {
        width: 100%;
    }

    /* Why Section */
    .why {
        padding: 30px 0;
    }

    .why__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .why__item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .why__item:hover {
        transform: translateX(0) scale(1.02);
    }

    .why__icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
    }

    .why__text {
        font-size: 15px;
    }

    /* Contact Section */
    .contact {
        padding: 30px 0;
    }

    .contact__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact__form {
        padding: 20px 15px;
    }

    .input,
    .select {
        padding: 10px 12px;
        font-size: 14px;
    }

    .phone-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form__btn {
        font-size: 16px;
        padding: 12px;
    }

    /* Footer */
    .footer__logo img {
        width: 120px;
    }

    .footer__info-top {
        font-size: 13px;
        line-height: 1.6;
    }

    .footer__info-bottom {
        font-size: 13px;
    }

    .copy {
        font-size: 11px;
        padding: 10px 0;
        line-height: 1.4;
    }

    /* Typography */
    strong {
        font-size: 16px;
        margin: 15px 0 10px 0;
        padding-left: 10px;
    }

    p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    /* Buttons */
    .btn {
        font-size: 14px;
        padding: 8px 15px;
    }

    /* Popup */
    .popup {
        width: 95%;
        max-width: 95%;
        padding: 25px 12px;
        margin: 0 10px;
    }

    .popup__close {
        width: 18px;
        height: 18px;
        top: 12px;
        right: 12px;
    }

    .popup-info__box h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .popup-info__box h4 {
        font-size: 16px;
        margin-top: 15px;
        margin-bottom: 8px;
    }

    .popup-info__box p,
    .popup-info__box li {
        font-size: 13px;
    }
}

/* Small Mobile Styles (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    /* Header - Keep logo and button on one line */
    .header__flex {
        gap: 5px;
    }

    .header__logo img {
        width: 90px;
    }

    .header__btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .hero__left h1 {
        font-size: 20px;
    }

    .hero__left p {
        font-size: 15px;
    }

    .list__title,
    .why__title,
    .contact__title {
        font-size: 18px;
    }

    .list__item-img img {
        height: 35px;
    }

    .why__icon {
        width: 35px;
        height: 35px;
    }

    .contact__form {
        padding: 15px 10px;
    }

    .input,
    .select,
    .phone-input {
        padding: 8px 10px;
        font-size: 13px;
    }

    strong {
        font-size: 15px;
    }

    p {
        font-size: 13px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 20px 0;
    }

    .hero__flex {
        flex-direction: row;
        gap: 20px;
    }

    .hero__left,
    .hero__right {
        width: 48%;
    }

    .hero__right {
        order: 0;
    }

    .hero__left h1 {
        font-size: 20px;
    }

    .hero__left p {
        font-size: 14px;
    }

    .list__flex {
        flex-direction: column;
        gap: 15px;
    }

    .list__item {
        width: 100%;
    }
}

/* Ensure images are always responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}