* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 50%, #f4fbff 100%);
    color: #1b1f2a;
    line-height: 1.6;
}

header {
    background: linear-gradient(90deg, #ffffff 0%, #f1f6ff 50%, #ffffff 100%);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(0, 140, 255, 0.18);
    border-bottom: 2px solid #00b7ff;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d6ff, #ff4fd8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: #081018;
    box-shadow: 0 10px 22px rgba(0, 180, 255, 0.22);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.08);
}

.menu-toggle {
    background: linear-gradient(135deg, #ff4fd8, #00d6ff);
    border: none;
    color: #081018;
    font-size: 28px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 22px rgba(255, 79, 216, 0.22);
    transition: all 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 26px rgba(0, 180, 255, 0.25);
}

nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
    transition: right 0.3s;
    box-shadow: -10px 0 28px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    overflow-y: auto;
    border-left: 3px solid #00b7ff;
}

nav.open {
    right: 0;
}

nav ul {
    list-style: none;
    padding: 80px 20px 20px 20px;
}

nav ul li {
    margin: 15px 0;
}

nav ul li a {
    color: #0069ff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s;
    border: 1px solid rgba(0, 183, 255, 0.25);
    background: rgba(255, 255, 255, 0.7);
}

nav ul li a:hover {
    background: linear-gradient(90deg, #ff4fd8, #00d6ff);
    color: #081018;
    border: 1px solid rgba(0, 183, 255, 0.65);
    transform: translateX(-5px);
    box-shadow: 0 12px 24px rgba(0, 183, 255, 0.18);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff4fd8, #00d6ff);
    border: none;
    color: #081018;
    font-size: 32px;
    cursor: pointer;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(255, 79, 216, 0.18);
    transition: all 0.3s;
}

.close-menu:hover {
    transform: rotate(90deg) scale(1.08);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 35, 0.35);
    display: none;
    z-index: 999;
    backdrop-filter: blur(2px);
}

.overlay.active {
    display: block;
}

.breadcrumbs {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
    color: #2b3347;
}

.breadcrumbs a {
    color: #0069ff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #ff2fb8;
}

.breadcrumbs span {
    color: #7a859a;
    margin: 0 8px;
}

.container {
    max-width: 1200px;
    margin: 15px auto;
    padding: 0 20px;
}

.intro-block {
    background: linear-gradient(135deg, #ffffff 0%, #f2f8ff 100%);
    border: 2px solid rgba(0, 183, 255, 0.7);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 14px 30px rgba(0, 183, 255, 0.12);
    width: 100%;
}

.intro-block table {
    width: 100%;
    border-collapse: collapse;
}

.intro-block td {
    padding: 0;
}

.intro-block h1 {
    color: #0069ff;
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 0 10px 22px rgba(0, 105, 255, 0.12);
}

.intro-block p {
    color: #2b3347;
    font-size: 16px;
}

.welcomeSection {
    background: linear-gradient(135deg, #ffffff 0%, #fff6fd 100%);
    border: 2px solid rgba(255, 47, 184, 0.55);
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 16px 34px rgba(255, 47, 184, 0.12);
    width: 100%;
}

.welcomeSection table {
    width: 100%;
    border-collapse: collapse;
}

.monty-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.monty-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.monty-logo {
    width: 160px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.monty-logo:hover {
    transform: scale(1.05);
}

.monty-sum {
    font-size: 22px;
    font-weight: bold;
    color: #121827;
    margin: 15px 0;
}

.monty-btn {
    display: inline-block;
    background: linear-gradient(135deg, #00ff7a, #00cc66);
    color: #081018;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 10px 22px rgba(0, 204, 102, 0.18);
    border: none;
    cursor: pointer;
}

.monty-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 204, 102, 0.22);
}

.content-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 18px 36px rgba(255, 79, 216, 0.14);
    border: 2px solid rgba(255, 79, 216, 0.55);
    background: #ffffff;
}

.content-section {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
    border: 2px solid rgba(255, 79, 216, 0.55);
    border-radius: 16px;
    padding: 35px;
    margin: 18px 0;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.content-section h2 {
    color: #ff2fb8;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 10px 22px rgba(255, 47, 184, 0.10);
}

.content-section p {
    color: #2b3347;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.content-section ul,
.content-section ol {
    color: #2b3347;
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

.calculator {
    background: linear-gradient(135deg, #ffffff 0%, #f2fbff 100%);
    border: 2px solid rgba(0, 183, 255, 0.7);
    border-radius: 16px;
    padding: 35px;
    margin: 20px 0;
    box-shadow: 0 16px 34px rgba(0, 183, 255, 0.12);
}

.calculator h2 {
    color: #0069ff;
    font-size: 28px;
    margin-bottom: 25px;
    text-shadow: 0 10px 22px rgba(0, 105, 255, 0.10);
}

.calculator label {
    display: block;
    color: #2b3347;
    font-size: 16px;
    margin-bottom: 8px;
}

.calculator input,
.calculator select {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 183, 255, 0.65);
    border-radius: 10px;
    background: #ffffff;
    color: #121827;
    font-size: 16px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.calculator input::placeholder {
    color: #7a859a;
}

.calculator button {
    background: linear-gradient(135deg, #ff4fd8, #00d6ff);
    color: #081018;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 12px 24px rgba(0, 183, 255, 0.14);
}

.calculator button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(255, 79, 216, 0.16);
}

.result {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 183, 255, 0.08);
    border: 2px solid rgba(0, 183, 255, 0.55);
    border-radius: 12px;
    color: #0057d9;
    font-size: 18px;
}

.faq {
    background: linear-gradient(135deg, #ffffff 0%, #fff6fd 100%);
    border: 2px solid rgba(255, 79, 216, 0.55);
    border-radius: 16px;
    padding: 35px;
    margin: 20px 0;
    box-shadow: 0 16px 34px rgba(255, 47, 184, 0.10);
}

.faq h2 {
    color: #ff2fb8;
    font-size: 28px;
    margin-bottom: 25px;
    text-shadow: 0 10px 22px rgba(255, 47, 184, 0.10);
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 183, 255, 0.45);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.faq-question {
    background: linear-gradient(90deg, #f2f8ff, #ffffff);
    color: #0069ff;
    padding: 18px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: linear-gradient(90deg, #eaf2ff, #fff2fb);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #ff2fb8;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    color: #2b3347;
}

.faq-answer p {
    padding: 18px;
    margin: 0;
}

.contact-form {
    background: linear-gradient(135deg, #ffffff 0%, #f2fbff 100%);
    border: 2px solid rgba(0, 183, 255, 0.7);
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 16px 34px rgba(0, 183, 255, 0.12);
}

.contact-form label {
    display: block;
    color: #0069ff;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid rgba(0, 183, 255, 0.65);
    border-radius: 10px;
    background: #ffffff;
    color: #121827;
    font-size: 16px;
    font-family: inherit;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    background: linear-gradient(135deg, #00ff7a, #00cc66);
    color: #081018;
    border: none;
    padding: 14px 35px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 12px 24px rgba(0, 204, 102, 0.18);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 204, 102, 0.22);
}

.policy-content {
    background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
    border: 2px solid rgba(0, 183, 255, 0.7);
    border-radius: 16px;
    padding: 40px;
    margin: 15px 0;
    box-shadow: 0 16px 34px rgba(0, 183, 255, 0.10);
    width: 100%;
}

.policy-content h2 {
    color: #0069ff;
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 10px 22px rgba(0, 105, 255, 0.10);
}

.policy-content h3 {
    color: #ff2fb8;
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.policy-content p {
    color: #2b3347;
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    color: #2b3347;
    margin-left: 25px;
    margin-bottom: 15px;
}

footer {
    background: linear-gradient(90deg, #ffffff 0%, #f1f6ff 50%, #ffffff 100%);
    color: #2b3347;
    text-align: center;
    padding: 30px 20px;
    margin-top: 30px;
    border-top: 2px solid #00b7ff;
    box-shadow: 0 -6px 18px rgba(0, 140, 255, 0.12);
}

footer a {
    color: #0069ff;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff2fb8;
}

footer .separator {
    margin: 0 10px;
    color: #ff2fb8;
}

@media (max-width: 768px) {
    .monty-row {
        flex-direction: column;
    }

    .monty-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 183, 255, 0.35);
        padding-bottom: 20px;
    }

    .monty-item:last-child {
        border-bottom: none;
    }

    .intro-block h1 {
        font-size: 28px;
    }

    .content-section h2 {
        font-size: 24px;
    }
}
