html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.new-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.logo-link:hover .logo {
    color: #3498db;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-wrapper {
    display: flex;
    gap: 25px;
}

.menu-wrapper a {
    font-weight: 600;
    color: #2c3e50;
    padding: 5px 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.menu-wrapper a:hover {
    color: #3498db;
}

@media (max-width: 991px) {
    .hamburger-btn {
        display: flex;
    }
    
    .menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .menu-wrapper.active {
        right: 0;
    }
    
    .menu-wrapper a {
        padding: 12px 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

.new-hero {
    background-color: #ecf0f1;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.big {
    font-size: 20px;
    color: #7f8c8d;
    margin-bottom: 30px;
}

.btn-jam-wrapper {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-jam {
    background-color: #2c3e50;
    color: #fff;
    border: 2px solid #2c3e50;
}

.btn-jam:hover {
    background-color: #34495e;
    color: #fff;
}

.btn-jam-white {
    background-color: #fff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-jam-white:hover {
    background-color: #f5f5f5;
    color: #2c3e50;
}

.free-note {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 4px;
    font-size: 14px;
    color: #7f8c8d;
}

.new-how-it-works {
    background-color: #fff;
    padding: 80px 0;
}

.how-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.how-text {
    flex: 1;
}

.how-image {
    flex: 1;
    text-align: center;
}

.how-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    width: 100%;
}

.h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.text-20 {
    font-size: 18px;
    line-height: 1.6;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.new-privacy {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.privacy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.privacy-item h3 {
    color: #3498db;
    margin-bottom: 15px;
}

.new-benefits {
    background-color: #fff;
    padding: 80px 0;
}

.benefits-content {
    display: flex;
    gap: 50px;
}

.benefits-text {
    flex: 1;
}

.benefits-image {
    flex: 1;
    text-align: center;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.border-bottom-dark {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.new-faq {
    background-color: #ecf0f1;
    padding: 80px 0;
}

.faq-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: none; 
}

.faq-item h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item h5:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    font-weight: 400;
    color: #3498db;
}

.faq-item h5.active:after {
    content: '-';
}

.faq-answer {
    display: none;
    padding-top: 15px;
    color: #7f8c8d;
}

.faq-answer p {
    margin-bottom: 0;
}

.underline {
    text-decoration: underline;
}

.new-contacts {
    background-color: #fff;
    padding: 80px 0;
}

.contacts-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.contact-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.rounded-with-icon {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}

.rounded-with-icon:hover {
    background-color: #e0e0e0;
}

.new-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo .logo {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.footer-logo p {
    color: #bdc3c7;
}

.footer-logo a {
    color: #3498db;
}

.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-links a {
    display: block;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-pgp {
    flex: 1;
    min-width: 250px;
}

.footer-pgp p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-pgp a {
    color: #fff;
    word-break: break-all;
}

.faq-header {
    cursor: pointer;
    display: inline-block;
    padding: 12px 30px;
    background-color: #2c3e50;
    color: white;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    margin: 0 auto;
	margin-bottom: 25px;
}

.faq-header:hover {
    background-color: #34495e;
    transform: translateY(-2px);
}

.faq-toggle-icon {
    margin-left: 8px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.text-center {
    text-align: center;
}

.top-button:hover {
    opacity: 1;
    background-color: #2980b9;
    transform: translateY(-3px);
}

.top-button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

@media (max-width: 991px) {
    .hero-content,
    .how-content,
    .benefits-content {
        flex-direction: column;
    }
    
    .hero-text,
    .how-text,
    .benefits-text {
        order: 1;
    }
    
    .hero-image,
    .how-image,
    .benefits-image {
        order: 2;
        margin-top: 30px;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .h1 {
        font-size: 32px;
    }
    
    .h2 {
        font-size: 28px;
    }
    
    .big {
        font-size: 18px;
    }
    
    .new-hero,
    .new-how-it-works,
    .new-privacy,
    .new-benefits,
    .new-faq,
    .new-contacts {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .contacts-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo,
    .footer-links,
    .footer-pgp {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .header-nav {
        flex-wrap: nowrap;
    }
    
    .menu-wrapper {
        margin-top: 0;
    }
    
    .menu-wrapper a {
        margin-left: 25px;
    }
}

svg.icon {
    display: inline-block;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.toast {
    font-family: 'Montserrat', sans-serif;
}

.rounded-with-icon:hover {
    background-color: #e0e0e0;
}

.inner-icon {
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    opacity: 1;
}

.inner-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    opacity: 1;
}

.rounded-with-icon:hover .inner-icon {
    background-color: #3498db;
}

.top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 99;
    opacity: 0.9;
    transition: all 0.3s ease;
	cursor: pointer;
    border: none;
    outline: none;
}

.top-button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    opacity: 1;
}

.top-button:hover {
    opacity: 1;
    background-color: #2980b9;
}

.privacy-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.privacy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.mix-form-container .big {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.6;
}


.mix-form-container .form-control:focus {
    border-color: #3498db;
    outline: none;
}

.mix-form-container .color-red {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 14px;
}

.mix-form-container .btn-jam {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 20px;
    font-weight: 600;
    border-radius: 4px;
}

.mix-form-container .text-center {
    margin-top: 30px;
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
}

.mix-form-container a {
    color: #3498db;
    text-decoration: none;
}

.mix-form-container a:hover {
    text-decoration: underline;
}

.mix-form-container .ml-2.mr-2 {
    color: #bdc3c7;
}

.mix-section {
    padding: 80px 0 40px;
    background-color: #ecf0f1;
    margin-top: 20px;
}

.mix-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mix-form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 32px;
}

.mix-form-container .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.mix-form-container .form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
}

.result-section {
    padding: 80px 0 40px;
    background-color: #ecf0f1;
    margin-top: 20px;
}

.result-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qr-code-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 10px 0;
	margin-bottom: 40px;
}

.copy-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #3498db;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.calculator-form {
    margin-top: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.calculator-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.calculator-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-form .form-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.calculator-form label {
    flex: 0 0 100px;
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
    padding-top: 8px;
}

.calculator-form .input-container {
    flex: 1;
}

.calculator-form .input-group {
    display: flex;
    width: 100%;
    max-width: 250px;
}

.calculator-form .form-control {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px 0 0 6px;
    text-align: right;
}

.calculator-form .form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
    outline: none;
}

.calculator-form .input-group-append {
    display: flex;
}

.calculator-form .input-group-text {
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-left: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
}

.calculator-form .receive-amount {
    padding: 8px 12px;
    background-color: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    text-align: right;
    max-width: 250px;
}

.calculator-form .input-note {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
    margin-top: 8px;
    max-width: 400px;
}

.calculator-form .form-submit {
    text-align: center;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .calculator-form .form-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .calculator-form label {
        text-align: left;
        padding-top: 0;
        flex: 0 0 auto;
    }
    
    .calculator-form .input-group,
    .calculator-form .receive-amount {
        max-width: 100%;
    }
    
    .calculator-form .input-note {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .calculator-form {
        padding: 20px 15px;
    }
    
    .calculator-form h2 {
        font-size: 20px;
    }
    
    .calculator-form .form-control,
    .calculator-form .input-group-text {
        padding: 6px 10px;
        font-size: 13px;
    }
}

.address-container {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0 10px; 
}

.address-container:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.address-display {
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    font-family: monospace;
    word-break: break-all;
    position: relative;
    margin: 20px 0;
	background-color: #f5f5f5;
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-hint {
    font-size: 12px;
    color: #7f8c8d; 
    margin-top: 5px;
    opacity: 1; 
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 5px 0;
}


.address-container, 
.address-container * {
    cursor: pointer;
}

.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 40px;
    margin: 20px auto;
}

.loader-block {
    width: 10px;
    height: 30px;
    background-color: #3498db;
    border-radius: 5px;
    animation: loader-animation 1.2s ease-in-out infinite;
}

.loader-block:nth-child(1) {
    animation-delay: 0s;
}

.loader-block:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-block:nth-child(3) {
    animation-delay: 0.4s;
}

.loader-block:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes loader-animation {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.5);
        opacity: 1;
    }
}

.d-none {
    display: none !important;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo-container {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: center; 
    margin-bottom: 10px;
}

.footer-logo-link {
    display: flex;
    flex-direction: row; 
    align-items: center;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.9;
}

.footer-logo-img {
    height: 30px;
    margin-right: 10px; 
    transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo p {
    color: #bdc3c7;
    margin: 5px 0 0 0;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo,
    .footer-links,
    .footer-pgp {
        width: 100%;
        max-width: 300px;
        margin-bottom: 30px;
    }
    
    .footer-links a {
        text-align: center;
    }
    .footer-logo-img {
        height: 25px;
    }
    
    .footer-logo-text {
        font-size: 20px;
    }
}