.requisites-section {
    padding: 60px 0;
    padding-top: 120px;
}
.requisites-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}
.requisites-title {
    text-align: left;
    margin-bottom: 40px;
}
.requisite-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.requisite-label {
    font-weight: bold;
    margin-right: 15px;
    width: 200px;
}
.requisite-value {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.requisite-input {
    width: 100%;
    padding: 10px 44px 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.copy-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 4px;
    color: #cacaca;
}
.copy-btn svg {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}
/* Existing styles above */

/* Responsive styles below */

@media (max-width: 1024px) {
    .requisites-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .requisite-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .requisite-label {
        width: 100%;
        margin-right: 0;
        margin-bottom: 5px;
    }
    .requisite-value {
        width: 100%;
    }
    .requisite-input {
        padding-right: 40px;
    }
    .copy-btn {
        right: 8px;
        width: 26px;
        height: 26px;
        padding: 3px;
    }
}

@media (max-width: 480px) {
    .requisites-section {
        padding: 40px 0;
    }
    .requisites-container {
        padding: 0 20px;
    }
    .requisites-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .requisite-input {
        padding: 8px 36px 8px 10px;
    }
    .copy-btn {
        width: 24px;
        height: 24px;
        right: 8px;
        padding: 3px;
    }
}
